Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assistant with Multiple Vector Store Ids? #78

Closed
hemnaathR opened this issue Jun 20, 2024 · 2 comments
Closed

Assistant with Multiple Vector Store Ids? #78

hemnaathR opened this issue Jun 20, 2024 · 2 comments
Labels
question Further information is requested

Comments

@hemnaathR
Copy link

hemnaathR commented Jun 20, 2024

Hello,
I noticed that when creating the Assistant you could pass in a list of VectorStoreIds? At the moment however we can only pass in one VectorStoreId per Assistant. Does that mean there are plans for an Assistant to use multiple Vector Stores in the future?

Assistant assistant = await assistantClient.CreateAssistantAsync(
    model: "gpt-4",
    new AssistantCreationOptions()
    {
        Name = "Assistant v2",
        Tools =
                {
                    new FileSearchToolDefinition(),
                },
        ToolResources = new()
        {
            FileSearch = new()
            {
                VectorStoreIds = [vs1.Id] // can support multiple ids in the future?
            }
        },
    });
@trrwilson
Copy link
Collaborator

Great question, @hemnaathR! With the disclaimer that I have no insider knowledge one way or another, I'll say that guess makes a lot of sense to me and that I share it -- there wouldn't be much of a reason to define this as an "array of one item" (per API reference and YAML spec if there weren't a prediction of having more than one.

@trrwilson trrwilson added the question Further information is requested label Jun 20, 2024
@hemnaathR
Copy link
Author

Cool. Fingers crossed. 🤞🏼

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants