@@ -81,7 +81,7 @@ Build your AI agents in three lines of code!
81
81
82
82
** OpenAI**
83
83
* [ gpt-4.1] ( https://platform.openai.com/docs/models/gpt-4.1 ) (agent - can be overridden)
84
- * [ gpt-4.1-nano] ( https://platform.openai.com/docs/models/gpt-4.1-nano ) (router)
84
+ * [ gpt-4.1-nano] ( https://platform.openai.com/docs/models/gpt-4.1-nano ) (router - can be overridden )
85
85
* [ text-embedding-3-large] ( https://platform.openai.com/docs/models/text-embedding-3-large ) (embedding)
86
86
* [ tts-1] ( https://platform.openai.com/docs/models/tts-1 ) (audio TTS)
87
87
* [ gpt-4o-mini-transcribe] ( https://platform.openai.com/docs/models/gpt-4o-mini-transcribe ) (audio transcription)
@@ -90,12 +90,16 @@ Build your AI agents in three lines of code!
90
90
91
91
** Grok**
92
92
* [ grok-3-fast] ( https://x.ai/api#pricing ) (agent - optional)
93
+ * [ grok-3-mini-fast] ( https://x.ai/api#pricing ) (router - optional)
93
94
* [ grok-2-image] ( https://x.ai/api#pricing ) (image generation - optional)
94
95
95
96
** Gemini**
96
- * [ gemini-2.5-flash-preview-04-17] ( https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview ) (agent - optional)
97
+ * [ gemini-2.5-flash-preview-04-17] ( https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview ) (agent & router - optional)
97
98
* [ imagen-3.0-generate-002] ( https://ai.google.dev/gemini-api/docs/models#imagen-3 ) (image generation - optional)
98
99
100
+ ** Ollama**
101
+ * [ gemma:4b-it-qat] ( https://ollama.com/library/gemma3 ) - (agent & router - optional)
102
+
99
103
## Installation
100
104
101
105
You can install Solana Agent using pip:
@@ -399,8 +403,6 @@ config = {
399
403
400
404
### Grok
401
405
402
- ` grok-3-fast ` can be used instead of ` gpt-4.1 ` for the agent model
403
-
404
406
``` python
405
407
config = {
406
408
" grok" : {
@@ -411,8 +413,6 @@ config = {
411
413
412
414
### Gemini
413
415
414
- ` gemini-2.5-pro-preview-03-25 ` can be used instead of ` gpt-4.1 ` for the agent model
415
-
416
416
``` python
417
417
config = {
418
418
" gemini" : {
@@ -421,6 +421,16 @@ config = {
421
421
}
422
422
```
423
423
424
+ ### Ollama
425
+
426
+ ``` python
427
+ config = {
428
+ " ollama" : {
429
+ " api_key" : " use-this-key-1010"
430
+ },
431
+ }
432
+ ```
433
+
424
434
### Knowledge Base
425
435
426
436
The Knowledge Base (KB) is meant to store text values and/or PDFs (extracts text) - can handle very large PDFs.
0 commit comments