(no commit message)

This commit is contained in:
2025-11-24 22:13:32 -05:00
parent 2c346586a9
commit 4bc40a9d13
3 changed files with 19 additions and 19 deletions

View File

@@ -11,11 +11,11 @@ from .signatures import AnalyzeRepository, AnalyzeCodeStructure, GenerateLLMsTxt
class RepositoryAnalyzerConfig(PrecompiledConfig):
"""Configuration for RepositoryAnalyzer."""
repo_analyzer_model: str = "gpt-4o"
code_analyzer_model: str = "gpt-4o"
repo_analyzer_model: str = "gpt-5.1-2025-11-13"
code_analyzer_model: str = "gpt-5.1-2025-11-13"
llms_txt_generator_model: str = "gpt-4o"
max_tokens: int = 8192
temperature: float = 0.7
max_tokens: int = 16000
temperature: float = 1.0
class RepositoryAnalyzer(PrecompiledAgent):