agentgui 1.0.892 → 1.0.893
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/server.js +1 -1
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -92,7 +92,7 @@ const modelCache = new Map();
|
|
|
92
92
|
const getModelsForAgent = makeGetModelsForAgent({ modelCache, discoveredAgents, ensureRunning, queryACPModels });
|
|
93
93
|
|
|
94
94
|
const _rateLimitMap = new LRUCache({ max: 1000, ttl: 60000 });
|
|
95
|
-
const RATE_LIMIT_MAX = parseInt(process.env.RATE_LIMIT_MAX || '
|
|
95
|
+
const RATE_LIMIT_MAX = parseInt(process.env.RATE_LIMIT_MAX || '3000', 10);
|
|
96
96
|
|
|
97
97
|
const _assetDeps = { compressAndSend, acceptsEncoding, watch, BASE_URL, PKG_VERSION };
|
|
98
98
|
function serveFile(filePath, res, req) { return _serveFile(filePath, res, req, _assetDeps); }
|