ai_api / src /shared /constants /responsesPreviousResponseId.ts
Yogesh
initial deploy
cd8bd0a
Raw
History Blame Contribute Delete
295 Bytes
export const RESPONSES_PREVIOUS_RESPONSE_ID_MODES = ["auto", "strip", "preserve"] as const;
export type ResponsesPreviousResponseIdMode = (typeof RESPONSES_PREVIOUS_RESPONSE_ID_MODES)[number];
export const DEFAULT_RESPONSES_PREVIOUS_RESPONSE_ID_MODE: ResponsesPreviousResponseIdMode = "auto";