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>AssistantUpdateParams.ToolResources.ToolResources

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
interface AssistantUpdateParams.ToolResources.ToolResources
import { type AssistantUpdateParams } from "https://deno.land/x/openai@v4.52.1/resources/beta/mod.ts";
const { ToolResources } = AssistantUpdateParams.ToolResources;

A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the code_interpreter tool requires a list of file IDs, while the file_search tool requires a list of vector store IDs.

Properties

optional
code_interpreter: ToolResources.CodeInterpreter

Properties

optional
file_ids: Array<string>

Overrides the list of file IDs made available to the code_interpreter tool. There can be a maximum of 20 files associated with the tool.

Properties

optional
vector_store_ids: Array<string>

Overrides the vector store attached to this assistant. There can be a maximum of 1 vector store attached to the assistant.

Properties

optional
code_interpreter: ToolResources.CodeInterpreter