@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.
30 lines (27 loc) • 690 B
JSON
{
"compilerOptions": {
"target": "ESNext",
"module": "CommonJS",
"lib": ["ESNext", "DOM", "ES6", "ES2022"],
"outDir": "./dist",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"declaration": true,
"declarationMap": true,
"allowJs": true,
"sourceMap": true,
},
"ts-node": {
"compilerOptions": {
"target": "ESNext",
"module": "CommonJS",
"lib": ["ESNext", "DOM", "ES6", "ES2022", "ES5"],
"outDir": "./dist",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
},
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}