types/response
ChatResponse type — LLM response variants.
Types
pub type ChatResponse {
TextResponse(
content: String,
reasoning_content: String,
finish_reason: String,
)
ToolCallsResponse(
reasoning_content: String,
tool_calls: List(message.ToolCall),
finish_reason: String,
)
}
Constructors
-
TextResponse( content: String, reasoning_content: String, finish_reason: String, ) -
ToolCallsResponse( reasoning_content: String, tool_calls: List(message.ToolCall), finish_reason: String, )