Revert "[Upstream] fix: update deepseek's price"

This commit is contained in:
sagit
2025-03-18 22:15:31 +08:00
committed by GitHub
parent ffd7c36a6d
commit 6bf54d7bb6
4 changed files with 8 additions and 8 deletions

View File

@@ -19,8 +19,9 @@ import (
)
func ConvertCompletionsRequest(textRequest model.GeneralOpenAIRequest) *Request {
p, _ := textRequest.Prompt.(string)
return &Request{
Prompt: textRequest.Prompt,
Prompt: p,
MaxTokens: textRequest.MaxTokens,
Stream: textRequest.Stream,
Temperature: textRequest.Temperature,