vibe-proxy/backend/internal/translator/common/gemini.go
2026-08-24 00:10:41 +02:00

8 lines
223 B
Go

package common
import "github.com/tidwall/gjson"
// IsGeminiThoughtPart reports whether a Gemini part contains hidden model thought.
func IsGeminiThoughtPart(part gjson.Result) bool {
return part.Get("thought").Bool()
}