Skip to content

Commit 446fbd6

Browse files
switch to full from mini for workflows
1 parent 78d02c3 commit 446fbd6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Smart workflows are as easy as combining your tools and prompts.
9494
### AI Models Used
9595

9696
**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)
9898
* [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) (embedding)
9999
* [tts-1](https://platform.openai.com/docs/models/tts-1) (audio TTS)
100100
* [gpt-4o-mini-transcribe](https://platform.openai.com/docs/models/gpt-4o-mini-transcribe) (audio transcription)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "solana-agent"
3-
version = "30.0.2"
3+
version = "30.0.3"
44
description = "AI Agents for Solana"
55
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
66
license = "MIT"

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-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"
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)