interface RetrievalToolCall {
    id: string;
    retrieval: unknown;
    type: "retrieval";
}

Properties

Properties

id: string

The ID of the tool call object.

retrieval: unknown

For now, this is always going to be an empty object.

type: "retrieval"

The type of tool call. This is always going to be retrieval for this type of tool call.

Generated using TypeDoc