interface ChatGroqCallOptions {
    headers?: Record<string, string>;
    response_format?: {
        type: "json_object";
    };
    tool_choice?: any;
    tools?: ChatCompletionTool[];
}

Hierarchy (view full)

Properties

headers?: Record<string, string>
response_format?: {
    type: "json_object";
}

Type declaration

  • type: "json_object"
tool_choice?: any
tools?: ChatCompletionTool[]

Generated using TypeDoc