Attach a Vector Store to an existing assistant #381
Replies: 2 comments 1 reply
-
I have the same problem with v2.2.0-beta.4. Please provide a solution for assigning VectorStoreId to an existing assistant. The OpenAI API allows this. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you for reaching out, @Drosos-kalyvas ! The string myVectorStoreId = "vs_id";
AssistantModificationOptions modificationOptions = new AssistantModificationOptions()
{
Name = "test assistant name",
ToolResources = new ToolResources()
{
FileSearch = new FileSearchToolResources()
{
VectorStoreIds = { myVectorStoreId }
}
}
}; |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm looking for a way to attach a vector store to an existing Assistant through AssistantModificationOptions but right now both
VectorStoreIds and NewVectorStores are {get;} only. Is this working as intended? Is it not implemented yet? Does anyone now any workarounds for this?
Version is 2.1.0
Beta Was this translation helpful? Give feedback.
All reactions