Request body for updating an existing AI Execution Context
This type defines the structure of the request body used when updating an existing AI Execution Context. It is a partial representation of the AiExecutionContext interface, allowing for partial updates.
Copy
import { AiExecutionContext } from './ai-execution-context';export type UpdateExecutionContextRequest = Partial<AiExecutionContext>;