Skip to content

Commit 13a9a3e

Browse files
committed
Release v3.8.8
1 parent b95f6b0 commit 13a9a3e

File tree

148 files changed

+285
-295
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+285
-295
lines changed

docker/Dockerfile.chat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN mkdir -p /root/.praison
1616
# Install Python packages (using latest versions)
1717
RUN pip install --no-cache-dir \
1818
praisonai_tools \
19-
"praisonai>=3.8.7" \
19+
"praisonai>=3.8.8" \
2020
"praisonai[chat]" \
2121
"embedchain[github,youtube]"
2222

docker/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN mkdir -p /root/.praison
2020
# Install Python packages (using latest versions)
2121
RUN pip install --no-cache-dir \
2222
praisonai_tools \
23-
"praisonai>=3.8.7" \
23+
"praisonai>=3.8.8" \
2424
"praisonai[ui]" \
2525
"praisonai[chat]" \
2626
"praisonai[realtime]" \

docker/Dockerfile.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN mkdir -p /root/.praison
1616
# Install Python packages (using latest versions)
1717
RUN pip install --no-cache-dir \
1818
praisonai_tools \
19-
"praisonai>=3.8.7" \
19+
"praisonai>=3.8.8" \
2020
"praisonai[ui]" \
2121
"praisonai[crewai]"
2222

examples/cookbooks/yaml/secondary_market_research_agents.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ agents: # Canonical: use 'agents' instead of 'roles'
2222
verbose: true
2323
allow_delegation: false
2424
llm:
25-
model: "gpt-5-nano"
25+
model: "gpt-4o-mini"
2626
temperature: 0.3
2727
tools:
2828
- "InternetSearchTool"
@@ -76,7 +76,7 @@ agents: # Canonical: use 'agents' instead of 'roles'
7676
verbose: true
7777
allow_delegation: false
7878
llm:
79-
model: "gpt-5-nano"
79+
model: "gpt-4o-mini"
8080
temperature: 0.3
8181
tools:
8282
- "InternetSearchTool"
@@ -130,7 +130,7 @@ agents: # Canonical: use 'agents' instead of 'roles'
130130
verbose: true
131131
allow_delegation: false
132132
llm:
133-
model: "gpt-5-nano"
133+
model: "gpt-4o-mini"
134134
temperature: 0.3
135135
tools:
136136
- "InternetSearchTool"
@@ -185,7 +185,7 @@ agents: # Canonical: use 'agents' instead of 'roles'
185185
verbose: true
186186
allow_delegation: false
187187
llm:
188-
model: "gpt-5-nano"
188+
model: "gpt-4o-mini"
189189
temperature: 0.4
190190
tools:
191191
- "InternetSearchTool"
@@ -239,7 +239,7 @@ agents: # Canonical: use 'agents' instead of 'roles'
239239
verbose: true
240240
allow_delegation: false
241241
llm:
242-
model: "gpt-5-nano"
242+
model: "gpt-4o-mini"
243243
temperature: 0.3
244244
tools:
245245
- "InternetSearchTool"
@@ -299,7 +299,7 @@ agents: # Canonical: use 'agents' instead of 'roles'
299299
verbose: true
300300
allow_delegation: false
301301
llm:
302-
model: "gpt-5-nano"
302+
model: "gpt-4o-mini"
303303
temperature: 0.3
304304
tasks:
305305
report_synthesis:

examples/python/agents/MULTI_PROVIDER_README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ agent = RouterAgent(
4646
name="Smart Assistant",
4747
role="Adaptive AI Assistant",
4848
goal="Complete tasks using the most appropriate model",
49-
models=["gpt-5-nano", "gpt-5-nano", "claude-3-5-sonnet-20241022"],
49+
models=["gpt-4o-mini", "gpt-4o-mini", "claude-3-5-sonnet-20241022"],
5050
routing_strategy="auto" # Automatic model selection
5151
)
5252

@@ -90,7 +90,7 @@ analyzer = RouterAgent(
9090
goal="Analyze data efficiently",
9191
models={
9292
"gemini/gemini-1.5-flash": {},
93-
"gpt-5-nano": {},
93+
"gpt-4o-mini": {},
9494
"claude-3-haiku-20240307": {}
9595
},
9696
model_router=router,
@@ -207,7 +207,7 @@ for i, agent in enumerate(auto.agents):
207207
name=agent.name,
208208
role=agent.role,
209209
goal=agent.goal,
210-
models=["gpt-5-nano", "gpt-5-nano", "claude-3-5-sonnet"],
210+
models=["gpt-4o-mini", "gpt-4o-mini", "claude-3-5-sonnet"],
211211
routing_strategy="auto"
212212
)
213213

examples/python/memory/gemini-embeddings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ researcher = Agent(
9797
name="Researcher",
9898
role="Information Researcher",
9999
goal="Store information with semantic understanding",
100-
llm="gpt-5-nano"
100+
llm="gpt-4o-mini"
101101
)
102102

103103
# Create task

examples/python/monitoring/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def my_function():
1717

1818
agent = Agent(
1919
instructions="You are a helpful assistant",
20-
llm="gpt-5-nano"
20+
llm="gpt-4o-mini"
2121
)
2222

2323
with track_api_call("agent_request"):

examples/python/token-metrics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ agent = Agent(
1313
role="Assistant",
1414
goal="Help users",
1515
backstory="You are helpful.",
16-
llm="gpt-5-nano",
16+
llm="gpt-4o-mini",
1717
metrics=True # 🎯 That's it!
1818
)
1919

examples/python/usecases/README-secondary-market-research.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Set your API keys:
177177

178178
```bash
179179
export OPENAI_API_KEY="your-api-key"
180-
export OPENAI_MODEL_NAME="gpt-5-nano"
180+
export OPENAI_MODEL_NAME="gpt-4o-mini"
181181
```
182182

183183
## 📝 Customization

src/praisonai-agents/01_basic_agent_with_monitoring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def main():
3838
# Create agent
3939
agent = Agent(
4040
instructions="You are a helpful assistant that explains scientific concepts simply",
41-
llm="gpt-5-nano"
41+
llm="gpt-4o-mini"
4242
)
4343

4444
# Track the API call performance

0 commit comments

Comments
 (0)