@inkeep/agents-run-api 0.0.0-dev-20260117173149 → 0.0.0-dev-20260117201141

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/env.d.ts CHANGED
@@ -19,11 +19,11 @@ declare const envSchema: z.ZodObject<{
19
19
  INKEEP_AGENTS_RUN_DATABASE_URL: z.ZodOptional<z.ZodString>;
20
20
  AGENTS_MANAGE_UI_URL: z.ZodDefault<z.ZodOptional<z.ZodString>>;
21
21
  LOG_LEVEL: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
22
- error: "error";
23
22
  trace: "trace";
24
23
  debug: "debug";
25
24
  info: "info";
26
25
  warn: "warn";
26
+ error: "error";
27
27
  }>>>;
28
28
  NANGO_SERVER_URL: z.ZodDefault<z.ZodOptional<z.ZodString>>;
29
29
  NANGO_SECRET_KEY: z.ZodOptional<z.ZodString>;
@@ -42,7 +42,7 @@ declare const env: {
42
42
  INKEEP_AGENTS_MANAGE_API_URL: string;
43
43
  INKEEP_AGENTS_EVAL_API_URL: string;
44
44
  AGENTS_MANAGE_UI_URL: string;
45
- LOG_LEVEL: "error" | "trace" | "debug" | "info" | "warn";
45
+ LOG_LEVEL: "trace" | "debug" | "info" | "warn" | "error";
46
46
  NANGO_SERVER_URL: string;
47
47
  ANTHROPIC_API_KEY: string;
48
48
  OTEL_BSP_SCHEDULE_DELAY: number;
@@ -1,4 +1,4 @@
1
- import * as _inkeep_agents_core1 from "@inkeep/agents-core";
1
+ import * as _inkeep_agents_core0 from "@inkeep/agents-core";
2
2
  import { BreakdownComponentDef, ContextBreakdown, calculateBreakdownTotal, createEmptyBreakdown } from "@inkeep/agents-core";
3
3
 
4
4
  //#region src/utils/token-estimator.d.ts
@@ -17,7 +17,7 @@ interface AssembleResult {
17
17
  /** The assembled prompt string */
18
18
  prompt: string;
19
19
  /** Token breakdown for each component */
20
- breakdown: _inkeep_agents_core1.ContextBreakdown;
20
+ breakdown: _inkeep_agents_core0.ContextBreakdown;
21
21
  }
22
22
  //#endregion
23
23
  export { AssembleResult, type BreakdownComponentDef, type ContextBreakdown, calculateBreakdownTotal, createEmptyBreakdown, estimateTokens };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-run-api",
3
- "version": "0.0.0-dev-20260117173149",
3
+ "version": "0.0.0-dev-20260117201141",
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-20260117173149"
44
+ "@inkeep/agents-core": "^0.0.0-dev-20260117201141"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@hono/zod-openapi": "^1.1.5",