Spaces:
Running on Zero
Running on Zero
File size: 319 Bytes
ef6e870 | 1 2 3 4 5 6 7 8 | // actions accepted by the realtime inference control endpoint (API_CHAT.CONTROL)
// kept separate from the endpoint paths since these are protocol level verbs
export const CONTROL_ACTION = {
END_REASONING: 'reasoning_end'
} as const;
export type ControlAction = (typeof CONTROL_ACTION)[keyof typeof CONTROL_ACTION];
|