Skip to content

Commit

Permalink
fix: table name (#1879)
Browse files Browse the repository at this point in the history
## Description
Change table name of simple agent

## Type of change

Please check the options that are relevant:

- [x] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] Model update
- [ ] Infrastructure change

## Checklist

- [x] My code follows Phidata's style guidelines and best practices
- [x] I have performed a self-review of my code
- [ ] I have added docstrings and comments for complex logic
- [ ] My changes generate no new warnings or errors
- [ ] I have added cookbook examples for my new addition (if needed)
- [ ] I have updated requirements.txt/pyproject.toml (if needed)
- [ ] I have verified my changes in a clean environment

## Additional Notes

Include any deployment notes, performance implications, or other
relevant information:
  • Loading branch information
anuragts authored Jan 24, 2025
1 parent ca52ac0 commit 07d6869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cookbook/playground/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
role="Answer basic questions",
agent_id="simple-agent",
model=OpenAIChat(id="gpt-4o-mini"),
storage=SqliteAgentStorage(table_name="web_agent", db_file=agent_storage_file),
storage=SqliteAgentStorage(table_name="simple_agent", db_file=agent_storage_file),
add_history_to_messages=True,
num_history_responses=3,
add_datetime_to_instructions=True,
Expand Down

0 comments on commit 07d6869

Please sign in to comment.