MCPcopy Create free account
hub / github.com/IAmUnbounded/devctx / ChatMessage

Interface ChatMessage

devctx/src/core/ai.ts:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { loadConfig } from "../utils/config";
2
3interface ChatMessage {
4 role: "system" | "user" | "assistant";
5 content: string;
6}
7
8interface AIResponse {
9 content: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected