MCPcopy Index your code
hub / github.com/Superflows-AI/superflows / FunctionMessage

Interface FunctionMessage

lib/models.ts:22–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20export type Claude3Message = Exclude<ChatGPTMessage, { role: "function" }>;
21
22export interface FunctionMessage {
23 role: "function";
24 content: string;
25 name: string;
26}
27
28export type GPTMessageInclSummary =
29 | {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected