|
@@ -64,7 +64,7 @@ func (l *ChatCompletionsLogic) ChatCompletions(req *types.CompApiReq) (resp *typ
|
|
|
}
|
|
|
|
|
|
apiResp, err := l.workForFastgpt(req, workToken, apiKeyObj.OpenaiBase)
|
|
|
- if err == nil {
|
|
|
+ if err == nil && apiResp != nil {
|
|
|
l.doRequestLog(req, apiResp) //请求记录
|
|
|
}
|
|
|
|
|
@@ -187,6 +187,12 @@ func (l *ChatCompletionsLogic) appendUsageDetailLog(authToken string, req *types
|
|
|
func (l *ChatCompletionsLogic) workForFastgpt(req *types.CompApiReq, apiKey string, apiBase string) (resp *types.CompOpenApiResp, err error) {
|
|
|
|
|
|
//apiKey := "fastgpt-d2uehCb2T40h9chNGjf4bpFrVKmMkCFPbrjfVLZ6DAL2zzqzOFJWP"
|
|
|
+ if len(req.ChatId) > 0 && len(req.FastgptChatId) == 0 {
|
|
|
+ req.FastgptChatId = req.ChatId
|
|
|
+ }
|
|
|
+ if len(req.Model) > 0 {
|
|
|
+ req.Variables["model"] = req.Model
|
|
|
+ }
|
|
|
return compapi.NewFastgptChatCompletions(l.ctx, apiKey, apiBase, req)
|
|
|
|
|
|
}
|