@corbat-tech/coco 2.36.0 → 2.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +149 -13
- package/dist/adapters/index.d.ts +37 -0
- package/dist/adapters/index.js +46 -0
- package/dist/adapters/index.js.map +1 -0
- package/dist/agent-runtime-DeLcB0Ie.d.ts +756 -0
- package/dist/blueprints-BWcCJfnN.d.ts +99 -0
- package/dist/cli/index.js +1117 -34
- package/dist/cli/index.js.map +1 -1
- package/dist/extension-manifests-DcvOnrp3.d.ts +113 -0
- package/dist/index-Dp1o8c9g.d.ts +2807 -0
- package/dist/index.d.ts +25 -1730
- package/dist/index.js +1878 -403
- package/dist/index.js.map +1 -1
- package/dist/presets/index.d.ts +39 -0
- package/dist/presets/index.js +26585 -0
- package/dist/presets/index.js.map +1 -0
- package/dist/profiles-BcyL-gQ9.d.ts +76 -0
- package/dist/rag-BakFRE-u.d.ts +31 -0
- package/dist/registry-CEpl9Jq0.d.ts +115 -0
- package/dist/runtime/index.d.ts +54 -0
- package/dist/runtime/index.js +26855 -0
- package/dist/runtime/index.js.map +1 -0
- package/dist/tools/index.d.ts +5 -0
- package/dist/tools/index.js +18726 -0
- package/dist/tools/index.js.map +1 -0
- package/package.json +9 -3
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { d as AgentPreset } from '../blueprints-BWcCJfnN.js';
|
|
2
|
+
import { K as KnowledgeRetriever } from '../rag-BakFRE-u.js';
|
|
3
|
+
import { S as SupportDraftHandler, H as HumanEscalationHandler, p as SalesLeadSummaryHandler, I as InternalOpsDraftHandler } from '../profiles-BcyL-gQ9.js';
|
|
4
|
+
import '../agent-runtime-DeLcB0Ie.js';
|
|
5
|
+
import '../registry-CEpl9Jq0.js';
|
|
6
|
+
import 'zod';
|
|
7
|
+
|
|
8
|
+
interface BrandPresetConfig {
|
|
9
|
+
brand: string;
|
|
10
|
+
audience?: string;
|
|
11
|
+
extraInstructions?: string;
|
|
12
|
+
}
|
|
13
|
+
interface RagPresetConfig extends BrandPresetConfig {
|
|
14
|
+
retriever?: KnowledgeRetriever;
|
|
15
|
+
}
|
|
16
|
+
interface SupportRagPresetConfig extends RagPresetConfig {
|
|
17
|
+
supportDraft?: SupportDraftHandler;
|
|
18
|
+
humanEscalation?: HumanEscalationHandler;
|
|
19
|
+
}
|
|
20
|
+
interface AppointmentPresetConfig extends BrandPresetConfig {
|
|
21
|
+
businessHours?: string;
|
|
22
|
+
}
|
|
23
|
+
interface SalesIntakePresetConfig extends BrandPresetConfig {
|
|
24
|
+
leadSummary?: SalesLeadSummaryHandler;
|
|
25
|
+
}
|
|
26
|
+
interface InternalOpsPresetConfig extends BrandPresetConfig {
|
|
27
|
+
opsDraft?: InternalOpsDraftHandler;
|
|
28
|
+
}
|
|
29
|
+
declare const publicWebsiteAssistantPreset: AgentPreset<BrandPresetConfig>;
|
|
30
|
+
declare const ragKnowledgeAssistantPreset: AgentPreset<RagPresetConfig>;
|
|
31
|
+
declare const supportRagAssistantPreset: AgentPreset<SupportRagPresetConfig>;
|
|
32
|
+
declare const salesIntakeAssistantPreset: AgentPreset<SalesIntakePresetConfig>;
|
|
33
|
+
declare const customerSupportAssistantPreset: AgentPreset<BrandPresetConfig>;
|
|
34
|
+
declare const appointmentBookingAssistantPreset: AgentPreset<AppointmentPresetConfig>;
|
|
35
|
+
declare const internalOpsAssistantPreset: AgentPreset<InternalOpsPresetConfig>;
|
|
36
|
+
declare const codingAgentPreset: AgentPreset<BrandPresetConfig>;
|
|
37
|
+
declare const AGENT_PRESETS: readonly [AgentPreset<BrandPresetConfig>, AgentPreset<RagPresetConfig>, AgentPreset<SupportRagPresetConfig>, AgentPreset<SalesIntakePresetConfig>, AgentPreset<BrandPresetConfig>, AgentPreset<AppointmentPresetConfig>, AgentPreset<InternalOpsPresetConfig>, AgentPreset<BrandPresetConfig>];
|
|
38
|
+
|
|
39
|
+
export { AGENT_PRESETS, type AppointmentPresetConfig, type BrandPresetConfig, type InternalOpsPresetConfig, type RagPresetConfig, type SalesIntakePresetConfig, type SupportRagPresetConfig, appointmentBookingAssistantPreset, codingAgentPreset, customerSupportAssistantPreset, internalOpsAssistantPreset, publicWebsiteAssistantPreset, ragKnowledgeAssistantPreset, salesIntakeAssistantPreset, supportRagAssistantPreset };
|