File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ Smart workflows are as easy as combining your tools and prompts.
94
94
### AI Models Used
95
95
96
96
** OpenAI**
97
- * [ gpt-4.1-mini ] ( https://platform.openai.com/docs/models/gpt-4.1-mini ) (agent & router)
97
+ * [ gpt-4.1] ( https://platform.openai.com/docs/models/gpt-4.1 ) (agent & router)
98
98
* [ text-embedding-3-large] ( https://platform.openai.com/docs/models/text-embedding-3-large ) (embedding)
99
99
* [ tts-1] ( https://platform.openai.com/docs/models/tts-1 ) (audio TTS)
100
100
* [ gpt-4o-mini-transcribe] ( https://platform.openai.com/docs/models/gpt-4o-mini-transcribe ) (audio transcription)
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " solana-agent"
3
- version = " 30.0.2 "
3
+ version = " 30.0.3 "
4
4
description = " AI Agents for Solana"
5
5
authors = [" Bevan Hunt <bevan@bevanhunt.com>" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change 33
33
34
34
T = TypeVar ("T" , bound = BaseModel )
35
35
36
- DEFAULT_CHAT_MODEL = "gpt-4.1-mini "
37
- DEFAULT_VISION_MODEL = "gpt-4.1-mini "
38
- DEFAULT_PARSE_MODEL = "gpt-4.1-mini "
36
+ DEFAULT_CHAT_MODEL = "gpt-4.1"
37
+ DEFAULT_VISION_MODEL = "gpt-4.1"
38
+ DEFAULT_PARSE_MODEL = "gpt-4.1"
39
39
DEFAULT_EMBEDDING_MODEL = "text-embedding-3-large"
40
40
DEFAULT_EMBEDDING_DIMENSIONS = 3072
41
41
DEFAULT_TRANSCRIPTION_MODEL = "gpt-4o-mini-transcribe"
You can’t perform that action at this time.
0 commit comments