We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a966ad4 commit 837b151Copy full SHA for 837b151
pkg/epp/scheduling/types/types.go
@@ -56,22 +56,6 @@ type LLMRequestData struct {
56
ChatCompletions *ChatCompletionsRequest `json:"chat_completions,omitempty"`
57
}
58
59
-func (r *LLMRequestData) String() string {
60
- if r == nil {
61
- return nilString
62
- }
63
-
64
- if r.Completions != nil {
65
- return r.Completions.String()
66
67
68
- if r.ChatCompletions != nil {
69
- return r.ChatCompletions.String()
70
71
72
- return ""
73
-}
74
75
// CompletionsRequest is a structured representation of the fields we parse out of the
76
// /v1/completions request body.
77
// This struct includes fields usable for plugins and scheduling decisions - and not the entire
0 commit comments