Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/openai/resources/beta/mod.ts>VectorStoreCreateParams

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
namespace VectorStoreCreateParams
import { VectorStoreCreateParams } from "https://deno.land/x/openai@v4.52.0/resources/beta/mod.ts";

Interfaces

The default strategy. This strategy currently uses a max_chunk_size_tokens of 800 and chunk_overlap_tokens of 400.

The expiration policy for a vector store.

interface VectorStoreCreateParams
import { type VectorStoreCreateParams } from "https://deno.land/x/openai@v4.52.0/resources/beta/mod.ts";

Properties

The chunking strategy used to chunk the file(s). If not set, will use the auto strategy. Only applicable if file_ids is non-empty.

The expiration policy for a vector store.

optional
file_ids: Array<string>

A list of File IDs that the vector store should use. Useful for tools like file_search that can access files.

optional
metadata: unknown | null

Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long.

optional
name: string

The name of the vector store.