@the-agenticflow/openflows 0.1.13 → 0.1.15

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/bin/agentflow-bin CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
package/bin/openflows.js CHANGED
@@ -138,9 +138,8 @@ async function startProxy() {
138
138
  if (process.env.FIREWORKS_API_KEY && !process.env.GATEWAY_URL) {
139
139
  proxyEnv.GATEWAY_URL = 'https://api.fireworks.ai/inference/v1/';
140
140
  proxyEnv.GATEWAY_API_KEY = process.env.FIREWORKS_API_KEY;
141
- if (!process.env.MODEL_MAP) {
142
- // Default model mapping for common Claude models to Fireworks
143
- proxyEnv.MODEL_MAP = 'claude-haiku-4-5-20251001=accounts/fireworks/models/glm-5,claude-3-5-haiku-20241022=accounts/fireworks/models/glm-5';
141
+ if (!process.env.PROXY_TARGET_MODEL) {
142
+ proxyEnv.PROXY_TARGET_MODEL = 'accounts/fireworks/models/glm-5';
144
143
  }
145
144
  console.log('[openflows] Configured proxy for Fireworks gateway');
146
145
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-agenticflow/openflows",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "Autonomous AI development team — turns GitHub issues into working PRs",
5
5
  "main": "index.js",
6
6
  "bin": {