You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In autogen.agentchat.contrib.vectordb.mongodb.py Line 295, the sanity check requires docs to have and "id", MongoDB Atlas can auto assign an ID, and therefore this is a roadblock for users looking to use the Auto ID feature. Uploading without ID is acceptable, but not possible.
What did you expect to happen?
Files should be able to be uploaded with just a {"content" : XXXXX} dictionary, without {"id":XX, "content":XXXXX}.
How can we reproduce it (as minimally and precisely as possible)?
Run a MongoDBAtlasVectorDB instance, and run the MongoDBAtlasVectorDB.insert_docs(docs = [{"content" : "This is dummy content"}], collection_name = "dummy_collection")
AutoGen version
0.2.40
Which package was this bug in
AgentChat
Model used
GPT3.5 (irrelevant)
Python version
3.12
Operating system
Windows (Code Spaces)
Any additional info you think would be helpful for fixing this bug
Example Auto ID, from simply uploading the Content + Vector.
The text was updated successfully, but these errors were encountered:
What happened?
In
autogen.agentchat.contrib.vectordb.mongodb.py
Line 295, the sanity check requires docs to have and "id", MongoDB Atlas can auto assign an ID, and therefore this is a roadblock for users looking to use the Auto ID feature. Uploading without ID is acceptable, but not possible.What did you expect to happen?
Files should be able to be uploaded with just a
{"content" : XXXXX}
dictionary, without{"id":XX, "content":XXXXX}
.How can we reproduce it (as minimally and precisely as possible)?
Run a
MongoDBAtlasVectorDB
instance, and run theMongoDBAtlasVectorDB.insert_docs(docs = [{"content" : "This is dummy content"}], collection_name = "dummy_collection")
AutoGen version
0.2.40
Which package was this bug in
AgentChat
Model used
GPT3.5 (irrelevant)
Python version
3.12
Operating system
Windows (Code Spaces)
Any additional info you think would be helpful for fixing this bug
Example Auto ID, from simply uploading the Content + Vector.
The text was updated successfully, but these errors were encountered: