We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30698c9 commit 04ad3c6Copy full SHA for 04ad3c6
config.json
@@ -1,3 +1,3 @@
1
{
2
- "ChatFunctionName": ""
+ "ChatFunctionName": "testChatFunction"
3
}
src/agents/base_agent/base_agent.py
@@ -35,9 +35,9 @@ class State(TypedDict):
35
36
class BaseAgent:
37
def __init__(self):
38
- llm = OpenAILLMs() # OpenAILLMs() or GoogleAILLMs()
+ llm = GoogleAILLMs() # OpenAILLMs() or GoogleAILLMs()
39
self.llm = llm.get_llm()
40
- summarisation_llm = OpenAILLMs() # OpenAILLMs() or GoogleAILLMs()
+ summarisation_llm = GoogleAILLMs() # OpenAILLMs() or GoogleAILLMs()
41
self.summarisation_llm = summarisation_llm.get_llm()
42
self.summary = ""
43
self.conversationalStyle = ""
0 commit comments