Align branding, prompts, and deployment tooling
This commit is contained in:
@@ -6,7 +6,6 @@ from __future__ import annotations
|
||||
import asyncio
|
||||
import json
|
||||
import logging
|
||||
import sys
|
||||
import time
|
||||
import uuid
|
||||
from dataclasses import dataclass, field
|
||||
@@ -245,11 +244,6 @@ class OpenClawWebSocketClient:
|
||||
# Build connect params
|
||||
connect_params = self._build_connect_params()
|
||||
|
||||
# Debug: log connect params
|
||||
import logging
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
logger.debug(f"Connect params: {connect_params}")
|
||||
|
||||
# Send connect request and wait for hello-ok
|
||||
hello_event = await self._send_request("connect", connect_params, _allow_handshake=True)
|
||||
self._hello = GatewayHello(
|
||||
@@ -346,11 +340,6 @@ class OpenClawWebSocketClient:
|
||||
"scopes": scopes.split(","),
|
||||
}
|
||||
|
||||
# Debug output
|
||||
print(f"DEBUG: nonce={self._nonce}", file=sys.stderr)
|
||||
print(f"DEBUG: auth_payload={auth_payload}", file=sys.stderr)
|
||||
print(f"DEBUG: connect params = {json.dumps(params, indent=2)}", file=sys.stderr)
|
||||
|
||||
return params
|
||||
|
||||
async def _recv_loop(self) -> None:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""Shared schema package for EvoTraders services."""
|
||||
"""Shared schema package for 大时代 services."""
|
||||
|
||||
from shared.schema.price import Price, PriceResponse
|
||||
from shared.schema.financial import (
|
||||
|
||||
Reference in New Issue
Block a user