Remove commented debug logging in ConvertOpenAIResponsesRequestToGeminiCLI

This commit is contained in:
Luis Pater
2025-09-03 03:03:07 +08:00

View File

@@ -10,6 +10,5 @@ import (
func ConvertOpenAIResponsesRequestToGeminiCLI(modelName string, inputRawJSON []byte, stream bool) []byte {
rawJSON := bytes.Clone(inputRawJSON)
rawJSON = ConvertOpenAIResponsesRequestToGemini(modelName, rawJSON, stream)
// log.Debug(string(rawJSON))
return ConvertGeminiRequestToGeminiCLI(modelName, rawJSON, stream)
}