UNPKG

@kitn.ai/chat

Version:

Framework-agnostic, Shadow-DOM web components for building AI chat interfaces — works in React, Vue, Angular, Svelte, or plain HTML. Authored in SolidJS.

15 lines (14 loc) 502 B
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://kitn.ai/schemas/card/card-envelope.schema.json", "title": "CardEnvelope", "description": "A card the agent/server asks the chat to render. `data` validates against the per-type schema.", "type": "object", "required": ["type", "id", "data"], "properties": { "type": { "type": "string", "minLength": 1 }, "id": { "type": "string", "minLength": 1 }, "data": {}, "title": { "type": "string" } } }