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.
- package/package.json +1 -1
- package/src/api.js +1 -1
package/package.json
CHANGED
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://
|
|
22
|
+
const baseUrl = config.host || 'https://prompt-forge-studio.vercel.app';
|
|
23
23
|
|
|
24
24
|
const payload = { prompt };
|
|
25
25
|
if (model) {
|