We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de87b8c commit e3711d3Copy full SHA for e3711d3
src/agent/agent.py
@@ -29,9 +29,9 @@ class State(TypedDict):
29
class BaseAgent:
30
def __init__(self):
31
# Main chat LLM — change to GoogleAILLMs(), AzureLLMs(), or OllamaLLMs() if preferred
32
- self.llm = OpenAILLMs().get_llm()
+ self.llm = GoogleAILLMs().get_llm()
33
# Summarisation LLM — can be set to a different/cheaper model than the chat LLM
34
- self.summarisation_llm = OpenAILLMs().get_llm()
+ self.summarisation_llm = GoogleAILLMs().get_llm()
35
36
self.max_messages_to_summarize = 11
37
self.role_prompt = role_prompt
0 commit comments