fix: specify the expected client header (#9)

Kevin Eger committed May 12, 2026 at 16:19 UTC 491864b0baab4a0145a33eef02a94b8c85f21d3a
1 file changed +2 -2
src/colab_cli/client.py
+2 -2
@@ -28,8 +28,8 @@ import requests
28 # Standard Colab Headers
29 ACCEPT_JSON_HEADER = {"key": "Accept", "value": "application/json"}
30 COLAB_CLIENT_AGENT_HEADER = {
31 - "key": "X-Goog-Colab-Client-Agent",
32 - "value": "python-colab-client",
31 + "key": "X-Colab-Client-Agent",
32 + "value": "colab-cli",
33 }
34 COLAB_XSRF_TOKEN_HEADER = {"key": "X-Goog-Colab-Token", "value": ""}
35