futuremeng/ollama-laravel
Composer 安装命令:
composer require futuremeng/ollama-laravel
包简介
This is my package ollama-laravel
README 文档
README
Ollama-Laravel is a Laravel package that provides a seamless integration with the Ollama API. It includes functionalities for model management, prompt generation, format setting, and more. This package is perfect for developers looking to leverage the power of the Ollama API in their Laravel applications.
If you use laravel 10.x, please use the following version V1.0.9
https://github.com/futuremeng/ollama-laravel/releases/tag/v1.0.9
Installation
composer require futuremeng/ollama-laravel
Configuration
php artisan vendor:publish --tag="ollama-laravel-config"
Published config file:
return [ 'model' => env('OLLAMA_MODEL', 'llama2'), 'url' => env('OLLAMA_URL', 'http://127.0.0.1:11434'), 'default_prompt' => env('OLLAMA_DEFAULT_PROMPT', 'Hello, how can I assist you today?'), 'connection' => [ 'timeout' => env('OLLAMA_CONNECTION_TIMEOUT', 300), 'verify_ssl' => env('OLLAMA_VERIFY_SSL', true), 'auth' => [ 'type' => env('OLLAMA_AUTH_TYPE', null), // 'basic' or 'bearer' 'username' => env('OLLAMA_AUTH_USERNAME', null), 'password' => env('OLLAMA_AUTH_PASSWORD', null), 'token' => env('OLLAMA_AUTH_TOKEN', null), ], 'headers' => [ // Add any custom headers here // 'X-Custom-Header' => 'value', ], ], ];
Authentication
Note: The Ollama server itself does not include built-in authentication. The authentication features in this package are designed to work with reverse proxy setups (like Nginx, Caddy, or Apache) that add authentication in front of your Ollama server.
The package supports both Basic Authentication and Bearer Token Authentication when accessing Ollama through a reverse proxy. This is particularly useful when:
- Deploying Ollama in a production environment
- Securing access to your Ollama instance
- Running Ollama behind a corporate firewall
Common reverse proxy setups:
- Nginx with basic auth or token validation
- Caddy with authentication middleware
- Apache with auth modules
Basic Authentication
To use Basic Authentication with your reverse proxy, set the following environment variables:
OLLAMA_AUTH_TYPE=basic OLLAMA_AUTH_USERNAME=your_username OLLAMA_AUTH_PASSWORD=your_password
Bearer Token Authentication
To use Bearer Token Authentication, set the following environment variables:
OLLAMA_AUTH_TYPE=bearer OLLAMA_AUTH_TOKEN=your_bearer_token
Custom Headers
You can add custom headers in the configuration file:
'headers' => [ 'X-Custom-Header' => 'value', 'Another-Header' => 'another-value', ],
Usage
Basic Usage
use futuremeng\Ollama\Facades\Ollama; $schema = [ "type" => "array", "items" => [ "type" => "object", "properties" => [ "s" => ["type" => "string"], "p" => ["type" => "string"], "o" => ["type" => "string"], "type" => [ "type" => "string", "enum" => ["resource", "literal"], ], ], "required" => ["s", "p", "o", "type"], ], ]; /** @var array $response */ $response = Ollama::agent('You are a language expert...') ->prompt('The sky is blue.') ->model('llama2') ->options(['temperature' => 0.7]) ->format($schema) ->stream(false) ->ask();
Vision Support
/** @var array $response */ $response = Ollama::model('llava:13b') ->prompt('What is in this picture?') ->image(public_path('images/example.jpg')) ->ask(); // "The image features a close-up of a person's hand, wearing bright pink fingernail polish and blue nail polish. In addition to the colorful nails, the hand has two tattoos – one is a cross and the other is an eye."
Chat Completion
$messages = [ ['role' => 'user', 'content' => 'My name is Toni Soriano and I live in Spain'], ['role' => 'assistant', 'content' => 'Nice to meet you , Toni Soriano'], ['role' => 'user', 'content' => 'where I live ?'], ]; $response = Ollama::agent('You know me really well!') ->model('llama2') ->chat($messages); // "You mentioned that you live in Spain." ### Chat Completion
Chat Completion with tools
$messages = [ ['role' => 'user', 'content' => 'What is the weather in Toronto?'], ]; $response = Ollama::model('llama3.1') ->tools([ [ "type" => "function", "function" => [ "name" => "get_current_weather", "description" => "Get the current weather for a location", "parameters" => [ "type" => "object", "properties" => [ "location" => [ "type" => "string", "description" => "The location to get the weather for, e.g. San Francisco, CA", ], "format" => [ "type" => "string", "description" => "The format to return the weather in, e.g. 'celsius' or 'fahrenheit'", "enum" => ["celsius", "fahrenheit"], ], ], "required" => ["location", "format"], ], ], ], ]) ->chat($messages);
Streamable responses
use futuremeng\Ollama\Facades\Ollama; use Illuminate\Console\BufferedConsoleOutput; /** @var \GuzzleHttp\Psr7\Response $response */ $response = Ollama::agent('You are a snarky friend with one-line responses') ->prompt("I didn't sleep much last night") ->model('llama3') ->options(['temperature' => 0.1]) ->stream(true) ->ask(); $output = new BufferedConsoleOutput(); $responses = Ollama::processStream($response->getBody(), function($data) use ($output) { $output->write($data['response']); }); $output->write("\n"); $complete = implode('', array_column($responses, 'response')); $output->write("<info>$complete</info>");
futuremeng/ollama-laravel 适用场景与选型建议
futuremeng/ollama-laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 14 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 03 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「ollama-laravel」 「futuremeng」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 futuremeng/ollama-laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 futuremeng/ollama-laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 futuremeng/ollama-laravel 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This is my package ollama-laravel
This is my package ollama-laravel
Alfabank REST API integration
Laravel package for Accurate Online API integration.
Shared RCX Laravel DataTables UI and configuration helpers.
Boot a Laravel project on any machine with one command: app:serve installs missing tools (PHP, Node, Composer, Herd, Docker), creates .env, sets up the database, runs migrations, builds assets, starts a queue worker and serves via Herd, Sail or artisan serve; app:down cleanly stops everything it sta
统计信息
- 总下载量: 14
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-03-27