Dev madina#177
Conversation
…ic in main.py" This reverts commit eb8ef8a.
MetaboT v1.1 0 Update dependencies, replace code interpreter, some other improvements
Add LangSmith Evaluation to docs
Update model IDs and base URLs in params.ini for consistency
- Remove unused sections (llm_preview, llm_gpt_5, llm_o1) whose ids duplicated other sections and were never retrieved at runtime. - Rename [llm_o3_mini] -> [llm_mini] so the section name matches its actual model id (gpt-5.4-mini); update the SPARQL improvement chain, test fixture, and docs accordingly. - Set temperature=1 for gpt-5.5 sections (llm_o, llm_litellm_openai); the API rejects temperature=0 for that model, which was crashing agent runs with a 400 unsupported_value error. - Trim llm_handler.py section list to ["llm_o", "llm_mini"] so the module no longer references removed sections.
dev_madinaMerge remote-tracking branch 'origin/dev_madina' into dev_madina
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Review Summary by QodoClean up LLM configuration and fix gpt-5.5 temperature validation
WalkthroughsDescription• Consolidate LLM configuration by removing duplicate/unused sections • Rename llm_o3_mini to llm_mini for consistency with model ID • Fix gpt-5.5 temperature from 0 to 1 to resolve API validation errors • Update model IDs for LiteLLM providers (Gemini, Mistral, OpenAI) • Add LangSmith Evaluation documentation to navigation Diagramflowchart LR
A["params.ini<br/>LLM Config"] -->|Remove duplicates| B["Consolidated<br/>Sections"]
A -->|Fix temperature| C["gpt-5.5<br/>temp=1"]
D["tool_sparql.py<br/>llm_o3_mini"] -->|Rename| E["llm_mini"]
F["llm_handler.py<br/>Section list"] -->|Trim| G["llm_o, llm_mini"]
H["mkdocs.yml"] -->|Add| I["LangSmith docs"]
File Changes1. app/config/params.ini
|
Code Review by Qodo
1.
|
No description provided.