Log in
Log into community
Find answers from the community
View all posts
Related posts
Did this answer your question?
π
π
π
Powered by
Hall
Inactive
Updated 3 months ago
0
Follow
Agent
Agent
Inactive
0
Follow
t
theoxd
8 months ago
Β·
Is it possible to setup a groq agent? instead of openai?
L
t
6 comments
Share
Open in Discord
L
Logan M
8 months ago
Yea, just setup a react agent and pass in the groq llm
t
theoxd
8 months ago
Just to be sure, a Query engine tool, that I setup like this:
function_llm = groq_llm
agent = AgentRunner.from_llm(
None,
llm=function_llm,
verbose=True,
chat_history=history,
)
doc_tool = QueryEngineTool(
query_engine=agent,
metadata=ToolMetadata(
name=f"{route.title()}",
description=tool_summary,
),
)
Is the same as just querying the llm with the chat history right?
t
theoxd
8 months ago
Because i'm confused, this is dramatically different when I use openai and groq, whereas when I do it on the groq playground I get the expected result
L
Logan M
8 months ago
that seems not correct? You created an agent without any tools?
t
theoxd
8 months ago
the history in here is the only thing this agent needs
L
Logan M
8 months ago
That seems right to me then
Add a reply
Sign up and join the conversation on Discord
Join on Discord