@inkeep/agents-run-api 0.0.0-dev-20250911192304 → 0.0.0-dev-20250911210702
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/{chunk-JIWNRFDU.js → chunk-2MQ324HB.js} +6 -3
- package/dist/{conversations-YTJWHN67.js → conversations-WZLXOMZH.js} +1 -1
- package/dist/index.cjs +290 -385
- package/dist/index.js +290 -306
- package/package.json +2 -2
- package/dist/chunk-3COYP2VE.js +0 -70
- package/dist/chunk-PKBMQBKP.js +0 -5
- package/dist/instrumentation-KKYHA3A3.js +0 -1
|
@@ -5,7 +5,9 @@ import path from 'path';
|
|
|
5
5
|
import * as dotenv from 'dotenv';
|
|
6
6
|
import { z } from 'zod';
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
var __defProp = Object.defineProperty;
|
|
9
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
10
|
+
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
9
11
|
dotenv.config({ quiet: true });
|
|
10
12
|
z.enum(["development", "production"]).default("development");
|
|
11
13
|
var environmentSchema = z.enum(["development", "pentest", "production", "test"]);
|
|
@@ -35,7 +37,8 @@ var envSchema = z.object({
|
|
|
35
37
|
OPENAI_API_KEY: z.string().optional(),
|
|
36
38
|
ANTHROPIC_API_KEY: z.string(),
|
|
37
39
|
INKEEP_AGENTS_RUN_BYPASS_SECRET: z.string().optional(),
|
|
38
|
-
|
|
40
|
+
OTEL_MAX_EXPORT_BATCH_SIZE: z.coerce.number().optional(),
|
|
41
|
+
OTEL_EXPORTER_OTLP_ENDPOINT: z.string().optional().default("http://localhost:14318/v1/traces")
|
|
39
42
|
});
|
|
40
43
|
var parseEnv = () => {
|
|
41
44
|
try {
|
|
@@ -233,4 +236,4 @@ ${formattedHistory}
|
|
|
233
236
|
`;
|
|
234
237
|
}
|
|
235
238
|
|
|
236
|
-
export { createDefaultConversationHistoryConfig, dbClient_default, env, getFormattedConversationHistory, getFullConversationContext, getScopedHistory, getUserFacingHistory, saveA2AMessageResponse };
|
|
239
|
+
export { __publicField, createDefaultConversationHistoryConfig, dbClient_default, env, getFormattedConversationHistory, getFullConversationContext, getScopedHistory, getUserFacingHistory, saveA2AMessageResponse };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { createDefaultConversationHistoryConfig, getFormattedConversationHistory, getFullConversationContext, getScopedHistory, getUserFacingHistory, saveA2AMessageResponse } from './chunk-
|
|
1
|
+
export { createDefaultConversationHistoryConfig, getFormattedConversationHistory, getFullConversationContext, getScopedHistory, getUserFacingHistory, saveA2AMessageResponse } from './chunk-2MQ324HB.js';
|