@axiom-lattice/gateway 4.1.4 → 4.1.5
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 +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24036,7 +24036,11 @@ function initializeLogger(config) {
|
|
|
24036
24036
|
}
|
|
24037
24037
|
var app = (0, import_fastify.default)({
|
|
24038
24038
|
logger: false,
|
|
24039
|
-
bodyLimit: Number(process.env.BODY_LIMIT) || 50 * 1024 * 1024
|
|
24039
|
+
bodyLimit: Number(process.env.BODY_LIMIT) || 50 * 1024 * 1024,
|
|
24040
|
+
// Composite subagent thread IDs ({mainThread}____{assistant}-general-purpose_{toolCallId})
|
|
24041
|
+
// can exceed the 100-char default, which makes the router 404 before any
|
|
24042
|
+
// handler runs. Allow the longest IDs the conventions can produce.
|
|
24043
|
+
routerOptions: { maxParamLength: 512 }
|
|
24040
24044
|
});
|
|
24041
24045
|
app.addContentTypeParser("application/json", { parseAs: "string" }, function(request, body, done) {
|
|
24042
24046
|
if (request.method === "DELETE" || !body || body.length === 0) {
|