@probelabs/probe-chat 0.6.0-rc256 → 0.6.0-rc258
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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,8 +48,8 @@ DEBUG=false
|
|
|
48
48
|
|
|
49
49
|
# Default model (optional)
|
|
50
50
|
# For Anthropic: MODEL_NAME=claude-3-7-sonnet-latest
|
|
51
|
-
# For OpenAI: MODEL_NAME=gpt-
|
|
52
|
-
# For Google: MODEL_NAME=gemini-2.
|
|
51
|
+
# For OpenAI: MODEL_NAME=gpt-5.2
|
|
52
|
+
# For Google: MODEL_NAME=gemini-2.5-flash
|
|
53
53
|
|
|
54
54
|
# API URL configuration (optional)
|
|
55
55
|
# Generic base URL for all providers (if provider-specific URL not set)
|
|
@@ -123,7 +123,7 @@ This will override any ALLOWED_FOLDERS setting in your .env file.
|
|
|
123
123
|
### Command-line Options
|
|
124
124
|
|
|
125
125
|
- `-d, --debug`: Enable debug mode for verbose logging
|
|
126
|
-
- `-m, --model <model>`: Specify the model to use (e.g., `claude-3-7-sonnet-latest`, `gpt-
|
|
126
|
+
- `-m, --model <model>`: Specify the model to use (e.g., `claude-3-7-sonnet-latest`, `gpt-5.2`, `gemini-2.5-flash`)
|
|
127
127
|
- `-f, --force-provider <provider>`: Force a specific provider (options: `anthropic`, `openai`, `google`)
|
|
128
128
|
- `-w, --web`: Run in web interface mode
|
|
129
129
|
- `-p, --port <port>`: Port to run web server on (default: 8080)
|
|
@@ -166,12 +166,12 @@ Probe Chat supports multiple AI providers, giving you flexibility in choosing wh
|
|
|
166
166
|
- Best for: Complex code analysis, detailed explanations, and understanding nuanced patterns
|
|
167
167
|
|
|
168
168
|
2. **OpenAI GPT**
|
|
169
|
-
- Default model: `gpt-
|
|
169
|
+
- Default model: `gpt-5.2`
|
|
170
170
|
- Environment variable: `OPENAI_API_KEY`
|
|
171
171
|
- Best for: General code search, pattern recognition, and concise explanations
|
|
172
172
|
|
|
173
173
|
3. **Google Gemini**
|
|
174
|
-
- Default model: `gemini-2.
|
|
174
|
+
- Default model: `gemini-2.5-flash`
|
|
175
175
|
- Environment variable: `GOOGLE_API_KEY`
|
|
176
176
|
- Best for: Fast responses, code generation, and efficient search
|
|
177
177
|
|
|
@@ -201,8 +201,8 @@ You can specify which model to use for each provider:
|
|
|
201
201
|
1. **Using the command line option**:
|
|
202
202
|
```bash
|
|
203
203
|
node index.js --model claude-3-7-sonnet-latest
|
|
204
|
-
node index.js --model gpt-
|
|
205
|
-
node index.js --model gemini-2.
|
|
204
|
+
node index.js --model gpt-5.2
|
|
205
|
+
node index.js --model gemini-2.5-flash
|
|
206
206
|
```
|
|
207
207
|
|
|
208
208
|
2. **Using the environment variable**:
|
package/package.json
CHANGED