chatbotlite 0.3.1 → 0.5.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.
@@ -1,16 +0,0 @@
1
- /**
2
- * Business knowledge supplied to the bot. Markdown is the only universal format —
3
- * works for any vertical (plumber, restaurant, school, museum, bookstore, portfolio).
4
- * Headings give the model implicit structure without forcing a service-business schema.
5
- */
6
- type Knowledge = string;
7
- interface Message {
8
- role: "user" | "assistant" | "system";
9
- content: string;
10
- }
11
- interface GuardResult {
12
- ok: boolean;
13
- violations: string[];
14
- }
15
-
16
- export type { GuardResult as G, Knowledge as K, Message as M };