MCPcopy Create free account
hub / github.com/PaperDebugger/paperdebugger / FunctionCall

Struct FunctionCall

internal/models/function_calls.go:16–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14)
15
16type FunctionCall struct {
17 BaseModel `bson:",inline"`
18 UserID bson.ObjectID `bson:"user_id"`
19 ProjectID string `bson:"project_id"`
20 ConversationID string `bson:"conversation_id"`
21 ToolCallID string `bson:"tool_call_id"`
22 FunctionName string `bson:"function_name"`
23 FunctionParams string `bson:"function_params"` // json string
24 FunctionResult string `bson:"function_result"` // json string
25 FunctionError string `bson:"function_error"` // json string
26 FunctionStatus FunctionCallStatus `bson:"function_status"`
27}
28
29func (c FunctionCall) CollectionName() string {
30 return "function_calls"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected