Skip to content

Commit 837b151

Browse files
committed
removed LLMRequestData::String
Signed-off-by: Maroon Ayoub <[email protected]>
1 parent a966ad4 commit 837b151

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

pkg/epp/scheduling/types/types.go

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -56,22 +56,6 @@ type LLMRequestData struct {
5656
ChatCompletions *ChatCompletionsRequest `json:"chat_completions,omitempty"`
5757
}
5858

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-
7559
// CompletionsRequest is a structured representation of the fields we parse out of the
7660
// /v1/completions request body.
7761
// This struct includes fields usable for plugins and scheduling decisions - and not the entire

0 commit comments

Comments
 (0)