@jcheesepkg/nanobot 0.4.7 → 0.4.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jcheesepkg/nanobot",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "description": "Lightweight AI assistant - TypeScript port",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
@@ -33,10 +33,12 @@ This only needs to be done once per container.
33
33
 
34
34
  ## Quick start
35
35
 
36
+ Always use `--model openrouter/meta-llama/llama-3.3-70b-instruct:free` for summarization.
37
+
36
38
  ```bash
37
- summarize "https://example.com" --model openrouter/anthropic/claude-sonnet-4-20250514
38
- summarize "https://youtu.be/dQw4w9WgXcQ" --youtube auto
39
- summarize "/path/to/file.pdf"
39
+ summarize "https://example.com" --model openrouter/meta-llama/llama-3.3-70b-instruct:free
40
+ summarize "https://youtu.be/dQw4w9WgXcQ" --youtube auto --model openrouter/meta-llama/llama-3.3-70b-instruct:free
41
+ summarize "/path/to/file.pdf" --model openrouter/meta-llama/llama-3.3-70b-instruct:free
40
42
  ```
41
43
 
42
44
  ## YouTube: summary vs transcript
@@ -53,9 +55,7 @@ If the user asked for a transcript but it's huge, return a tight summary first,
53
55
 
54
56
  Uses `OPENROUTER_API_KEY` environment variable (already configured).
55
57
 
56
- Use `--model openrouter/<provider>/<model>` to specify a model. Examples:
57
- - `--model openrouter/anthropic/claude-sonnet-4-20250514`
58
- - `--model openrouter/google/gemini-2.0-flash-001`
58
+ Always pass `--model openrouter/meta-llama/llama-3.3-70b-instruct:free`.
59
59
 
60
60
  ## Useful flags
61
61