/**
 * This file was auto-generated by Fern from our API Definition.
 */
export interface ClassifySessionRequest {
    /** The classes to use for classification. */
    classes: string[];
    /** Custom instruction to use for classification. */
    instruction?: string;
    /** The number of session messages to consider for classification. Defaults to 4. */
    lastN?: number;
    /** The name of the classifier. Will be used to store the classification in session metadata if persist is True. */
    name: string;
    /** Whether to persist the classification to session metadata. Defaults to True. */
    persist?: boolean;
}
