@hongymagic/q 2026.428.0 → 2026.715.0-next.1205d4e
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 +2 -2
- package/dist/q.js +48026 -31152
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -119,12 +119,12 @@ Each provider can specify its own default `model`, which takes precedence over `
|
|
|
119
119
|
```toml
|
|
120
120
|
[default]
|
|
121
121
|
provider = "google"
|
|
122
|
-
# model = "gemini-
|
|
122
|
+
# model = "gemini-flash-latest" # Optional global default
|
|
123
123
|
|
|
124
124
|
[providers.google]
|
|
125
125
|
type = "google"
|
|
126
126
|
api_key_env = "GEMINI_API_KEY"
|
|
127
|
-
model = "gemini-
|
|
127
|
+
model = "gemini-flash-latest" # Optional per-provider default
|
|
128
128
|
```
|
|
129
129
|
|
|
130
130
|
See [config.example.toml](config.example.toml) for all options.
|