├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── ollama-laravel.php └── src ├── Facades └── Ollama.php ├── Ollama.php ├── OllamaServiceProvider.php ├── Services └── ModelService.php └── Traits ├── MakesHttpRequests.php └── StreamHelper.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/ollama-laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/config/ollama-laravel.php -------------------------------------------------------------------------------- /src/Facades/Ollama.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/src/Facades/Ollama.php -------------------------------------------------------------------------------- /src/Ollama.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/src/Ollama.php -------------------------------------------------------------------------------- /src/OllamaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/src/OllamaServiceProvider.php -------------------------------------------------------------------------------- /src/Services/ModelService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/src/Services/ModelService.php -------------------------------------------------------------------------------- /src/Traits/MakesHttpRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/src/Traits/MakesHttpRequests.php -------------------------------------------------------------------------------- /src/Traits/StreamHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudstudio/ollama-laravel/HEAD/src/Traits/StreamHelper.php --------------------------------------------------------------------------------