File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ Build your AI agents in three lines of code!
27
27
* Business Alignment
28
28
* Extensible Tooling
29
29
* Autonomous Operation
30
+ * Automated Tool Workflows
30
31
* Structured Outputs
31
32
* Knowledge Base
32
33
* MCP Support
@@ -57,6 +58,7 @@ Build your AI agents in three lines of code!
57
58
* Input and output guardrails for content filtering, safety, and data sanitization
58
59
* Generate custom images based on text prompts with storage on S3 compatible services
59
60
* Deterministically return structured outputs
61
+ * Sequentially provide tool commands that execute in the proper order
60
62
* Combine with event-driven systems to create autonomous agents
61
63
62
64
## Stack
@@ -74,7 +76,7 @@ Build your AI agents in three lines of code!
74
76
### AI Models Used
75
77
76
78
** 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)
78
80
* [ text-embedding-3-large] ( https://platform.openai.com/docs/models/text-embedding-3-large ) (embedding)
79
81
* [ tts-1] ( https://platform.openai.com/docs/models/tts-1 ) (audio TTS)
80
82
* [ 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 33
33
34
34
T = TypeVar ("T" , bound = BaseModel )
35
35
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 "
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