@gaiaverse/semantic-turning-point-detector
Version:
Detects key semantic turning points in conversations using recursive semantic distance analysis. Ideal for conversation analysis, dialogue segmentation, insight detection, and AI-assisted reasoning tasks.
56 lines • 2.71 kB
JavaScript
;
// -----------------------------------------------------------------------------
// Embedding Generation
// -----------------------------------------------------------------------------
Object.defineProperty(exports, "__esModule", { value: true });
exports.turningPointCategories = void 0;
/**
* Default turning point categories with descriptions
*/
exports.turningPointCategories = [
{
category: "Topic",
description: "This category is for content that is primarily focused on a specific area, domain, or subject. Use this when the content warrants categorization by topic.",
},
{
category: "Insight",
description: "This category applies to content that provides a unique insight or perspective. Use this when the content warrants categorization by insight.",
},
{
category: "Emotion",
description: "This category is for content that holds significant emotional impact. Use this when the content warrants categorization by emotion.",
},
{
category: "Meta-Reflection",
description: "This category applies to content that reflects on the conversation or interaction. Use this when the content warrants categorization by meta-reflection.",
},
{
category: "Decision",
description: "This category is for content that involves a decision or choice that has been made. Use this when the content warrants categorization by decision.",
},
{
category: "Question",
description: "This category applies to content that poses a question or inquiry. Use this when the content warrants categorization by question.",
},
{
category: "Problem",
description: "This category is for content that presents a problem or issue. Use this when the content warrants categorization by problem.",
},
{
category: "Action",
description: "This category applies to content that involves an action or activity, or serves as a call to action. Use this when the content warrants categorization by action.",
},
{
category: "Clarification",
description: "This category is for content that seeks or provides clarification. Use this when the content warrants categorization by clarification.",
},
{
category: "Objection",
description: "This category applies to content that expresses an objection or disagreement. Use this when the content warrants categorization by objection.",
},
{
category: "Other",
description: "This category applies to any other significant conversational shift that doesn't fit the above categories.",
},
];
//# sourceMappingURL=types.js.map