From f87210943c1074ed28df190af75559d7029f45f9 Mon Sep 17 00:00:00 2001 From: ken Date: Fri, 4 Apr 2025 16:29:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95ip=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- examples/src/common.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c6557ca..8f156de 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Agent模块负责处理request工作流,生成prompt与LLM交互。 > > > websocket接口地址: -> +> > > 接口文档: > diff --git a/examples/src/common.ts b/examples/src/common.ts index 1224970..f8ebb11 100644 --- a/examples/src/common.ts +++ b/examples/src/common.ts @@ -2,7 +2,7 @@ import ws from 'ws'; process.env["NODE_TLS_REJECT_UNAUTHORIZED"]="0" // const ADDR = "ws://112.74.39.99:8080/ws" -const ADDR = "ws://127.0.0.1:8080/ws" +const ADDR = "ws://47.117.75.243:8080/ws" export function makeClient( onMessage: ((data: ws.RawData) => void) | any = undefined,