Skip to content

Commit 177c798

Browse files
switch from nano to mini
1 parent 8a80f4a commit 177c798

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Build your AI agents in three lines of code!
2727
* Business Alignment
2828
* Extensible Tooling
2929
* Autonomous Operation
30+
* Automated Tool Workflows
3031
* Structured Outputs
3132
* Knowledge Base
3233
* MCP Support
@@ -57,6 +58,7 @@ Build your AI agents in three lines of code!
5758
* Input and output guardrails for content filtering, safety, and data sanitization
5859
* Generate custom images based on text prompts with storage on S3 compatible services
5960
* Deterministically return structured outputs
61+
* Sequentially provide tool commands that execute in the proper order
6062
* Combine with event-driven systems to create autonomous agents
6163

6264
## Stack
@@ -74,7 +76,7 @@ Build your AI agents in three lines of code!
7476
### AI Models Used
7577

7678
**OpenAI**
77-
* [gpt-4.1-nano](https://platform.openai.com/docs/models/gpt-4.1-nano) (agent & router)
79+
* [gpt-4.1-mini](https://platform.openai.com/docs/models/gpt-4.1-mini) (agent & router)
7880
* [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) (embedding)
7981
* [tts-1](https://platform.openai.com/docs/models/tts-1) (audio TTS)
8082
* [gpt-4o-mini-transcribe](https://platform.openai.com/docs/models/gpt-4o-mini-transcribe) (audio transcription)

solana_agent/adapters/openai_adapter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333

3434
T = TypeVar("T", bound=BaseModel)
3535

36-
DEFAULT_CHAT_MODEL = "gpt-4.1-nano"
37-
DEFAULT_VISION_MODEL = "gpt-4.1-nano"
38-
DEFAULT_PARSE_MODEL = "gpt-4.1-nano"
36+
DEFAULT_CHAT_MODEL = "gpt-4.1-mini"
37+
DEFAULT_VISION_MODEL = "gpt-4.1-mini"
38+
DEFAULT_PARSE_MODEL = "gpt-4.1-mini"
3939
DEFAULT_EMBEDDING_MODEL = "text-embedding-3-large"
4040
DEFAULT_EMBEDDING_DIMENSIONS = 3072
4141
DEFAULT_TRANSCRIPTION_MODEL = "gpt-4o-mini-transcribe"

0 commit comments

Comments
 (0)