Skip to main content

soothe_client/
intent_hints.rs

1//! Loop input intent hints.
2
3/// Fast text completion path.
4pub const TEXT_COMPLETION: &str = "text_completion";
5/// Image understanding → text.
6pub const IMAGE_TO_TEXT: &str = "image_to_text";
7/// OCR path.
8pub const OCR: &str = "ocr";
9/// Embedding path.
10pub const EMBED: &str = "embed";
11
12/// Default deliverable phases used by EventClassifier.
13pub const DEFAULT_DELIVERABLE_PHASES: &[&str] = &[
14    "quiz",
15    "goal_completion",
16    "chitchat",
17    "text_completion",
18    "image_to_text",
19    "ocr",
20    "embed",
21];