Replies: 1 comment
-
AssistantAgent is just one implementation of agent. It's not meant to be used for all scenarios. Perhaps you need a custom agent? https://microsoft.github.io/autogen/stable/user-guide/agentchat-user-guide/custom-agents.html Can you explain how you are using redis with your model? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
In my current implementation, I'm using Redis to communicate with a locally hosted LLM server. However, while working with AutoGen, I've encountered a challenge:
AutoGen seems to require a model to be defined via model_client.
Previously, in version 0.2, I could simply set:
llm_config = False
to skip using an LLM, which worked well for my custom setup.
My questions are:
Is there a way to plug in a custom function instead of defining a model in llm_config?
(Since my communication is handled via Redis and I don't need a standard LLM client.)
Is llm_config = False still supported in AutoGen v0.4.9, or is there an alternative approach in the latest version?
Any help or insights would be appreciated!
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions