Type Alias: GatewayInferenceInputUpdateVectorStoreRequest
type GatewayInferenceInputUpdateVectorStoreRequest = {
name?: string | null;
expires_after?: | GatewayInferenceInputVectorStoreExpirationAfter
| null;
metadata?: | {
[key: string]: GatewayJsonValue;
}
| null;
};
Defined in: src/models/ai-gateway-inference.ts:6996
Portkey UpdateVectorStoreRequest; strict modeled input with explicit JSON extension maps.
Example
`GatewayInferenceInputUpdateVectorStoreRequestSchema.parse(value);`
Properties
name?
optional name?: string | null;
Defined in: src/models/ai-gateway-inference.ts:6997
expires_after?
optional expires_after?:
| GatewayInferenceInputVectorStoreExpirationAfter
| null;
Defined in: src/models/ai-gateway-inference.ts:6998
metadata?
optional metadata?:
| {
[key: string]: GatewayJsonValue;
}
| null;
Defined in: src/models/ai-gateway-inference.ts:6999