From 76824a033769552c10ad352cb240f49e78dd87bb Mon Sep 17 00:00:00 2001 From: "wang.rong" Date: Tue, 27 May 2025 09:32:20 +0800 Subject: [PATCH] =?UTF-8?q?chat/completion=E9=80=8F=E4=BC=A0parallel=5Ftoo?= =?UTF-8?q?l=5Fcalls=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dto/openai_request.go | 1 + 1 file changed, 1 insertion(+) diff --git a/dto/openai_request.go b/dto/openai_request.go index e491812a..bda1bb17 100644 --- a/dto/openai_request.go +++ b/dto/openai_request.go @@ -43,6 +43,7 @@ type GeneralOpenAIRequest struct { ResponseFormat *ResponseFormat `json:"response_format,omitempty"` EncodingFormat any `json:"encoding_format,omitempty"` Seed float64 `json:"seed,omitempty"` + ParallelTooCalls *bool `json:"parallel_tool_calls,omitempty"` Tools []ToolCallRequest `json:"tools,omitempty"` ToolChoice any `json:"tool_choice,omitempty"` User string `json:"user,omitempty"`