github-router 0.3.0 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -44,6 +44,7 @@ Create `.claude/settings.json` in your project:
44
44
  {
45
45
  "env": {
46
46
  "ANTHROPIC_BASE_URL": "http://localhost:8787",
47
+ "ANTHROPIC_API_KEY": "dummy",
47
48
  "ANTHROPIC_AUTH_TOKEN": "dummy",
48
49
  "ANTHROPIC_MODEL": "gpt-4.1",
49
50
  "ANTHROPIC_DEFAULT_SONNET_MODEL": "gpt-4.1",
@@ -103,7 +104,8 @@ curl http://localhost:8787/v1/chat/completions \
103
104
  | `/v1/search` | POST | Web search |
104
105
  | `/usage` | GET | Copilot usage & quotas |
105
106
 
106
- All endpoints also available without the `/v1` prefix.
107
+ OpenAI-compatible endpoints are also available without the `/v1` prefix (for example, `/chat/completions`).
108
+ Anthropic endpoints are only available under `/v1/messages`.
107
109
 
108
110
  <details>
109
111
  <summary>Model / endpoint compatibility</summary>