From 0300cc96c4dd1043f33c06d15d2339ee7257fd04 Mon Sep 17 00:00:00 2001 From: songjvcheng Date: Mon, 12 Jan 2026 12:37:29 +0800 Subject: [PATCH] llm service --- service/llm_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/llm_service.go b/service/llm_service.go index 090aab4..71db38e 100644 --- a/service/llm_service.go +++ b/service/llm_service.go @@ -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))