How to Set Up Qdrant Collection in Docker for AutoGen RetrieveUserProxyAgent? #5264
anusonawane
started this conversation in
General
Replies: 1 comment 3 replies
-
@thinkall do you have any suggestions? |
Beta Was this translation helpful? Give feedback.
3 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,
I’m trying to create a Qdrant collection using Docker for my RetrieveUserProxyAgent in AutoGen. My current setup uses a local Qdrant instance:
client = QdrantClient(path="qdrant_db") ragproxyagent = RetrieveUserProxyAgent( ... db_config={"client": client}, vector_db="qdrant" )
However, I want to run Qdrant in Docker instead of a local file-based database. How should I modify my QdrantClient initialization to connect to a Qdrant container?
Any guidance or example configurations would be greatly appreciated!
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions