Skip to content

Commit 5fad68f

Browse files
v29.2.0 (#111)
* add ollama, router models, and update deps * fix bug for tool agents * fix codecov line
1 parent 6737b3d commit 5fad68f

File tree

6 files changed

+298
-243
lines changed

6 files changed

+298
-243
lines changed

README.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Build your AI agents in three lines of code!
8181

8282
**OpenAI**
8383
* [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)
8585
* [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) (embedding)
8686
* [tts-1](https://platform.openai.com/docs/models/tts-1) (audio TTS)
8787
* [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!
9090

9191
**Grok**
9292
* [grok-3-fast](https://x.ai/api#pricing) (agent - optional)
93+
* [grok-3-mini-fast](https://x.ai/api#pricing) (router - optional)
9394
* [grok-2-image](https://x.ai/api#pricing) (image generation - optional)
9495

9596
**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)
9798
* [imagen-3.0-generate-002](https://ai.google.dev/gemini-api/docs/models#imagen-3) (image generation - optional)
9899

100+
**Ollama**
101+
* [gemma:4b-it-qat](https://ollama.com/library/gemma3) - (agent & router - optional)
102+
99103
## Installation
100104

101105
You can install Solana Agent using pip:
@@ -399,8 +403,6 @@ config = {
399403

400404
### Grok
401405

402-
`grok-3-fast` can be used instead of `gpt-4.1` for the agent model
403-
404406
```python
405407
config = {
406408
"grok": {
@@ -411,8 +413,6 @@ config = {
411413

412414
### Gemini
413415

414-
`gemini-2.5-pro-preview-03-25` can be used instead of `gpt-4.1` for the agent model
415-
416416
```python
417417
config = {
418418
"gemini": {
@@ -421,6 +421,16 @@ config = {
421421
}
422422
```
423423

424+
### Ollama
425+
426+
```python
427+
config = {
428+
"ollama": {
429+
"api_key": "use-this-key-1010"
430+
},
431+
}
432+
```
433+
424434
### Knowledge Base
425435

426436
The Knowledge Base (KB) is meant to store text values and/or PDFs (extracts text) - can handle very large PDFs.

docs/index.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,6 @@ Observability and Tracing - Optional
336336
Grok - Optional
337337
~~~~~~~~~~~~~~~~
338338

339-
`grok-3-fast` can be used instead of `gpt-4.1` for the agent model
340-
341339
.. code-block:: python
342340
343341
config = {
@@ -350,8 +348,6 @@ Grok - Optional
350348
Gemini - Optional
351349
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
352350

353-
`gemini-2.5-pro-preview-03-25` can be used instead of `gpt-4.1` for the agent model
354-
355351
.. code-block:: python
356352
357353
config = {

0 commit comments

Comments
 (0)