TASK:LLM;

This commit is contained in:
shahaibo
2025-05-20 11:24:02 +08:00
parent ab804d57c1
commit a2625fa73f

View File

@@ -79,7 +79,7 @@ public class LLMServiceImpl implements LLMService {
AuthPrincipalVo principal = jwtTokenHelper.parserToUser(token);
Long accountId = principal.getId();
int userSeq = getNextSeq(projectId); // 获取当前session下一条消息序号
String url = "http://18.167.251.121:2011/chat-stream";
String url = "http://18.167.251.121:10002/chat-stream";
// String url = "http://10.1.1.240:1013/chat-stream";
HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
conn.setRequestMethod("POST");