<!-- .github/pull_request_template.md --> ## Description Change Gemini adapter and data models so Gemini can use custom data models ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced provider-specific enhancements with updated data representations, including improved node labeling and enriched summary and description fields for graph displays. - Improved configuration management by automatically loading environment settings for better LLM operations. - **Refactor** - Streamlined response handling with a simplified approach for defining output formats. - Updated error handling by removing the try-except block for dotenv imports. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
6 lines
154 B
Python
6 lines
154 B
Python
# Loading LLM Config from data_models.py requires to have dotenv imported first
|
|
# and to have it loaded
|
|
|
|
import dotenv
|
|
|
|
dotenv.load_dotenv(override=True)
|