mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-27 01:23:55 +08:00
@@ -96,7 +96,11 @@ class MCPClient:
|
|||||||
read_stream, write_stream = stdio_r, stdio_w
|
read_stream, write_stream = stdio_r, stdio_w
|
||||||
# 建立SSEClient
|
# 建立SSEClient
|
||||||
elif "url" in self.config:
|
elif "url" in self.config:
|
||||||
sse_r, sse_w = await stack.enter_async_context(sse_client(self.config["url"]))
|
if "API_ACCESS_TOKEN" in self.config:
|
||||||
|
headers = {"Authorization": f"Bearer {self.config['API_ACCESS_TOKEN']}"}
|
||||||
|
else:
|
||||||
|
headers = {}
|
||||||
|
sse_r, sse_w = await stack.enter_async_context(sse_client(self.config["url"], , headers=headers))
|
||||||
read_stream, write_stream = sse_r, sse_w
|
read_stream, write_stream = sse_r, sse_w
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user