Skip to content

Commit 7eefc39

Browse files
committed
Package upgrades
1 parent 90bf4be commit 7eefc39

File tree

2 files changed

+116
-155
lines changed

2 files changed

+116
-155
lines changed

tests/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
async def run(tools: list[BaseTool], prompt: str) -> str:
20-
model = ChatGroq(model="llama-3.1-8b-instant", stop_sequences=None) # requires GROQ_API_KEY
20+
model = ChatGroq(model_name="llama-3.1-8b-instant", stop_sequences=None) # requires GROQ_API_KEY
2121
tools_map = {tool.name: tool for tool in tools}
2222
tools_model = model.bind_tools(tools)
2323
messages: list[BaseMessage] = [HumanMessage(prompt)]

0 commit comments

Comments
 (0)