MCPcopy
hub / github.com/AgentOps-AI/agentops / IMessage

Interface IMessage

app/dashboard/types/ISpan.ts:48–54  ·  view source on GitHub ↗

* Represents a message in a conversation

Source from the content-addressed store, hash-verified

46 * Represents a message in a conversation
47 */
48interface IMessage {
49 [key: string]: {
50 role: 'system' | 'user' | 'assistant' | string;
51 content: string;
52 finish_reason?: string;
53 };
54}
55
56/**
57 * OpenAI/LLM specific attributes

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…