@inkeep/agents-run-api 0.0.0-dev-20260107203842 → 0.0.0-dev-20260108085347

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.
@@ -52,11 +52,9 @@ async function handleMessageSend(c, agent, request) {
52
52
  const { agentId } = getRequestExecutionContext(c);
53
53
  const forwardedHeaders = {};
54
54
  const xForwardedCookie = c.req.header("x-forwarded-cookie");
55
- const authorization = c.req.header("authorization");
56
55
  const cookie = c.req.header("cookie");
57
56
  if (xForwardedCookie) forwardedHeaders["x-forwarded-cookie"] = xForwardedCookie;
58
57
  else if (cookie) forwardedHeaders["x-forwarded-cookie"] = cookie;
59
- if (authorization) forwardedHeaders.authorization = authorization;
60
58
  const task = {
61
59
  id: generateId(),
62
60
  input: { parts: params.message.parts.map((part) => ({
@@ -307,11 +305,9 @@ async function handleMessageStream(c, agent, request) {
307
305
  });
308
306
  const forwardedHeaders = {};
309
307
  const xForwardedCookie = c.req.header("x-forwarded-cookie");
310
- const authorization = c.req.header("authorization");
311
308
  const cookie = c.req.header("cookie");
312
309
  if (xForwardedCookie) forwardedHeaders["x-forwarded-cookie"] = xForwardedCookie;
313
310
  else if (cookie) forwardedHeaders["x-forwarded-cookie"] = cookie;
314
- if (authorization) forwardedHeaders.authorization = authorization;
315
311
  const task = {
316
312
  id: generateId(),
317
313
  input: { parts: params.message.parts.map((part) => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-run-api",
3
- "version": "0.0.0-dev-20260107203842",
3
+ "version": "0.0.0-dev-20260108085347",
4
4
  "description": "Agents Run API for Inkeep Agent Framework - handles chat, agent execution, and streaming",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
@@ -41,7 +41,7 @@
41
41
  "hono": "^4.10.4",
42
42
  "jmespath": "^0.16.0",
43
43
  "llm-info": "^1.0.69",
44
- "@inkeep/agents-core": "^0.0.0-dev-20260107203842"
44
+ "@inkeep/agents-core": "^0.0.0-dev-20260108085347"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@hono/zod-openapi": "^1.1.5",