Spaces:
Build error
Build error
A newer version of the Gradio SDK is available:
6.5.1
[Unreleased]
Added
- Moved agent instantiation into a separate
instantiate_agentfunction inapp_dev.py. - Extracted question fetching logic into a new
fetch_questionsfunction inapp_dev.py. - Created
my_agent.pyfor custom agent implementation. - Added
GeminiApiModelfor interacting with Google Gemini API. - Refactored
SmolAgentinmy_agent.pyto useGeminiApiModel. - Removed standalone
call_gemini_apifunction frommy_agent.py.
Changed
- Simplified error handling in
run_and_submit_allby removing redundant try-except block aroundinstantiate_agentcall. - Updated
run_and_submit_allto callfetch_questionsand handle its return values. - Updated
app_dev.pyto import and useSmolAgentfrommy_agent.py. - Added logic to
GeminiApiModelto extract text after "FINAL ANSWER: " marker in responses.
Deprecated
Removed
Fixed
Security
[0.1.0] - 2024-07-25
Added
- Initial project structure based on template.
- Basic Gradio app (
app.py) for agent evaluation. - Development version of app (
app_dev.py) for local testing. - Placeholder
BasicAgentinapp_dev.py. README.mdwith project overview and setup instructions.Changelog.mdto track changes..gitignorefile.- Placeholder
requirements.txt.