feat: implement user management system and integrate AI services with Ollama and Gemini

This commit is contained in:
jeremy bayse
2026-06-21 00:12:37 +02:00
parent 648749a69a
commit b85c2ba5a1
17 changed files with 1074 additions and 7 deletions
+11
View File
@@ -35,4 +35,15 @@ return [
],
],
'gemini' => [
'key' => env('GEMINI_API_KEY'),
'model' => env('GEMINI_MODEL', 'gemini-1.5-flash'),
],
'ollama' => [
'url' => env('OLLAMA_URL', 'http://localhost:11434'),
'model' => env('OLLAMA_MODEL', 'glm-ocr'),
],
];