Commit c40404a8 by CaIon

Update MaxTokens for gemini model to 300 in test request

parent ba9cd931
......@@ -193,7 +193,7 @@ func buildTestRequest(model string) *dto.GeneralOpenAIRequest {
testRequest.MaxTokens = 50
}
} else if strings.Contains(model, "gemini") {
testRequest.MaxTokens = 50
testRequest.MaxTokens = 300
} else {
testRequest.MaxTokens = 10
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment