llm service
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m3s

This commit is contained in:
宋居成 2026-01-12 12:37:29 +08:00
parent 24f72168dd
commit 0300cc96c4

View File

@ -1151,7 +1151,7 @@ func (s *LLMService) CallExtQAAPIStreamDirect(data map[string]interface{}) (inte
return nil, fmt.Errorf("error marshaling payload: %v", err)
}
url := "http://47.100.108.206:30028/api/qa/v1/chat/completionForExt"
url := "https://ai.ces-invest.com/api/qa/v1/chat/completionForExt"
fmt.Printf("Sending request to %s with payload: %s\n", url, string(jsonData))
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))