Use GPT-4 in Agent loop by default (#4899)

* Use GPT-4 as default smart LLM in Agent

* Rename (smart|fast)_llm_model to (smart|fast)_llm everywhere

* Fix test_config.py::test_initial_values

* Fix test_config.py::test_azure_config

* Fix Azure config backwards compatibility
This commit is contained in:
Reinier van der Leer
2023-07-07 03:42:18 +02:00
committed by GitHub
parent ac17518663
commit bde007e6f7
16 changed files with 109 additions and 112 deletions

View File

@@ -82,7 +82,7 @@ def summarize_text(
if instruction and question:
raise ValueError("Parameters 'question' and 'instructions' cannot both be set")
model = config.fast_llm_model
model = config.fast_llm
if question:
instruction = (