robot-resources 1.8.0 → 1.8.1

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.
@@ -219,18 +219,18 @@ function printManualInstructions() {
219
219
  'No AI tools detected for auto-configuration.',
220
220
  'Point your SDK at the Router by setting the base URL:',
221
221
  '',
222
- ' # OpenAI SDK / compatible clients',
222
+ ' # OpenAI SDK / compatible clients (include /v1 in the URL)',
223
223
  ' export OPENAI_BASE_URL=http://localhost:3838/v1',
224
+ ' # OpenAI(base_url="http://localhost:3838/v1")',
224
225
  '',
225
- ' # Anthropic SDK',
226
- ' export ANTHROPIC_BASE_URL=http://localhost:3838/v1',
227
- '',
228
- ' # Google Generative AI',
229
- ' export GOOGLE_API_BASE=http://localhost:3838/v1',
226
+ ' # Anthropic SDK (NO /v1 — the SDK appends /v1/messages itself)',
227
+ ' export ANTHROPIC_BASE_URL=http://localhost:3838',
228
+ ' # Anthropic(base_url="http://localhost:3838")',
230
229
  '',
231
- ' # Or pass base_url directly in your code:',
230
+ ' # Google / Gemini: native SDK is NOT supported via base_url.',
231
+ ' # Use the OpenAI-compatible client with a Gemini model name:',
232
232
  ' # OpenAI(base_url="http://localhost:3838/v1")',
233
- ' # Anthropic(base_url="http://localhost:3838/v1")',
233
+ ' # model = "gemini-2.5-flash"',
234
234
  '',
235
235
  'Docs: https://github.com/robot-resources/robot-resources',
236
236
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robot-resources",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "Robot Resources — AI agent tools. One command to install everything.",
5
5
  "type": "module",
6
6
  "bin": {