MCPcopy Create free account
hub / github.com/LaunchPlatform/beanhub-cli / get_client_headers

Function get_client_headers

beanhub_cli/http_client.py:20–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

18
19
20def get_client_headers() -> dict[str, str]:
21 cli_version = get_cli_version()
22 return {
23 "User-Agent": f"{PACKAGE_NAME}/{cli_version}",
24 CLIENT_VERSION_HEADER: cli_version,
25 }
26
27
28def make_client(base_url: str) -> Client:

Calls 1

get_cli_versionFunction · 0.85