mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-29 07:21:37 +08:00
72 lines
2.3 KiB
Python
72 lines
2.3 KiB
Python
|
|
"""QQBot shared utilities — User-Agent, HTTP helpers, config coercion."""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import platform
|
||
|
|
import sys
|
||
|
|
from typing import Any, Dict, List
|
||
|
|
|
||
|
|
from .constants import QQBOT_VERSION
|
||
|
|
|
||
|
|
|
||
|
|
# ---------------------------------------------------------------------------
|
||
|
|
# User-Agent
|
||
|
|
# ---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
def _get_hermes_version() -> str:
|
||
|
|
"""Return the hermes-agent package version, or 'dev' if unavailable."""
|
||
|
|
try:
|
||
|
|
from importlib.metadata import version
|
||
|
|
return version("hermes-agent")
|
||
|
|
except Exception:
|
||
|
|
return "dev"
|
||
|
|
|
||
|
|
|
||
|
|
def build_user_agent() -> str:
|
||
|
|
"""Build a descriptive User-Agent string.
|
||
|
|
|
||
|
|
Format::
|
||
|
|
|
||
|
|
QQBotAdapter/<qqbot_version> (Python/<py_version>; <os>; Hermes/<hermes_version>)
|
||
|
|
|
||
|
|
Example::
|
||
|
|
|
||
|
|
QQBotAdapter/1.0.0 (Python/3.11.15; darwin; Hermes/0.9.0)
|
||
|
|
"""
|
||
|
|
py_version = f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}"
|
||
|
|
os_name = platform.system().lower()
|
||
|
|
hermes_version = _get_hermes_version()
|
||
|
|
return f"QQBotAdapter/{QQBOT_VERSION} (Python/{py_version}; {os_name}; Hermes/{hermes_version})"
|
||
|
|
|
||
|
|
|
||
|
|
def get_api_headers() -> Dict[str, str]:
|
||
|
|
"""Return standard HTTP headers for QQBot API requests.
|
||
|
|
|
||
|
|
Includes ``Content-Type``, ``Accept``, and a dynamic ``User-Agent``.
|
||
|
|
``q.qq.com`` requires ``Accept: application/json`` — without it,
|
||
|
|
the server returns a JavaScript anti-bot challenge page.
|
||
|
|
"""
|
||
|
|
return {
|
||
|
|
"Content-Type": "application/json",
|
||
|
|
"Accept": "application/json",
|
||
|
|
"User-Agent": build_user_agent(),
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
# ---------------------------------------------------------------------------
|
||
|
|
# Config helpers
|
||
|
|
# ---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
def coerce_list(value: Any) -> List[str]:
|
||
|
|
"""Coerce config values into a trimmed string list.
|
||
|
|
|
||
|
|
Accepts comma-separated strings, lists, tuples, sets, or single values.
|
||
|
|
"""
|
||
|
|
if value is None:
|
||
|
|
return []
|
||
|
|
if isinstance(value, str):
|
||
|
|
return [item.strip() for item in value.split(",") if item.strip()]
|
||
|
|
if isinstance(value, (list, tuple, set)):
|
||
|
|
return [str(item).strip() for item in value if str(item).strip()]
|
||
|
|
return [str(value).strip()] if str(value).strip() else []
|