Skip to content

Commit d89b027

Browse files
committed
google llm models
1 parent cd5a481 commit d89b027

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/agent/agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ class State(TypedDict):
2929
class BaseAgent:
3030
def __init__(self):
3131
# Main chat LLM — change to GoogleAILLMs(), AzureLLMs(), or OllamaLLMs() if preferred
32-
self.llm = OpenAILLMs().get_llm()
32+
self.llm = GoogleAILLMs().get_llm()
3333
# Summarisation LLM — can be set to a different/cheaper model than the chat LLM
34-
self.summarisation_llm = OpenAILLMs().get_llm()
34+
self.summarisation_llm = GoogleAILLMs().get_llm()
3535

3636
self.max_messages_to_summarize = 11
3737
self.role_prompt = role_prompt

0 commit comments

Comments
 (0)