primellm 1.2.6 → 1.2.7

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/dist/index.js CHANGED
@@ -260,7 +260,7 @@ model = "gpt-4o"
260
260
  name = "PrimeLLM"
261
261
  base_url = "${PRIMELLM_BASE_URL}"
262
262
  env_key = "PRIMELLM_API_KEY"
263
- wire_api = "chat"
263
+ wire_api = "responses"
264
264
  `;
265
265
  (0, fs_1.writeFileSync)(configPath, configContent);
266
266
  return configPath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "primellm",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Configure Claude Code and Codex to use PrimeLLM as the backend",
5
5
  "bin": {
6
6
  "primellm": "./dist/index.js"
package/src/index.ts CHANGED
@@ -295,7 +295,7 @@ model = "gpt-4o"
295
295
  name = "PrimeLLM"
296
296
  base_url = "${PRIMELLM_BASE_URL}"
297
297
  env_key = "PRIMELLM_API_KEY"
298
- wire_api = "chat"
298
+ wire_api = "responses"
299
299
  `;
300
300
 
301
301
  writeFileSync(configPath, configContent);
package/verify_config.js CHANGED
@@ -19,7 +19,7 @@ model = "gpt-4o"
19
19
  name = "PrimeLLM"
20
20
  base_url = "${PRIMELLM_BASE_URL}"
21
21
  env_key = "PRIMELLM_API_KEY"
22
- wire_api = "chat"
22
+ wire_api = "responses"
23
23
  `;
24
24
  return configContent;
25
25
  }