prompt-forge-studio-cli 1.0.6 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/api.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prompt-forge-studio-cli",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Professional terminal-native prompt engineering studio",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/api.js CHANGED
@@ -19,7 +19,7 @@ async function generateResponse(prompt, model) {
19
19
  // We default to the production URL, but users can override this in their forge.config.json
20
20
  const { getConfig } = require('./config');
21
21
  const config = getConfig() || {};
22
- const baseUrl = config.host || 'https://www.promptforgestudio.com';
22
+ const baseUrl = config.host || 'https://prompt-forge-studio.vercel.app';
23
23
 
24
24
  const payload = { prompt };
25
25
  if (model) {