Update default reasoning model to GPT-5#160
Merged
talos-agent merged 1 commit intomainfrom Aug 9, 2025
Merged
Conversation
Co-Authored-By: talosgma@gmail.com <talosgma@gmail.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
|
yo devin, should've changed 4o to openai_model_name or sum so you don't have to change all those files every time openai release a new model |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update default reasoning model to GPT-5
Summary
This PR updates the default reasoning model across the entire Talos codebase from
gpt-4otogpt-5. The changes affect CLI commands, daemon operations, skills, memory systems, documentation, and test files while preserving intentional uses ofgpt-4o-miniand other model variants.Key changes:
main.py,daemon.py,proposals.py)twitter_voice.py,twitter_persona.py)memory.py)docs/andAGENTS.mdgpt-5for consistencygpt-4instead ofgpt-4o)Preserved unchanged:
gpt-4o-minireferences (intentionally using mini model variant)utils/llm.py(uses different naming conventions likeo4-mini,o3-deep-research)Review & Testing Checklist for Human
uv run talos --helpanduv run talos "test query"to ensure the agent still initializes and respondsgpt-4oreferences that should have been updateduv run talos daemonstarts successfully with new defaultsDiagram
%%{ init : { "theme" : "default" }}%% graph TD CLI["src/talos/cli/main.py<br/>Primary CLI entry point"]:::major-edit Daemon["src/talos/cli/daemon.py<br/>Continuous operation"]:::major-edit Proposals["src/talos/cli/proposals.py<br/>Governance CLI"]:::major-edit Skills["src/talos/skills/<br/>twitter_voice.py<br/>twitter_persona.py"]:::major-edit Memory["src/talos/core/memory.py<br/>Memory system"]:::major-edit Docs["AGENTS.md<br/>docs/ folder<br/>Documentation"]:::minor-edit Tests["tests/<br/>integration_tests/<br/>Test files"]:::minor-edit Preserved["utils/llm.py<br/>*-mini references<br/>Preserved unchanged"]:::context CLI --> Skills CLI --> Memory Daemon --> Memory Skills --> Memory subgraph Legend L1["Major Edit"]:::major-edit L2["Minor Edit"]:::minor-edit L3["Context/No Edit"]:::context end classDef major-edit fill:#90EE90 classDef minor-edit fill:#87CEEB classDef context fill:#FFFFFFNotes
gpt-4o→gpt-5(37 insertions, 37 deletions)