@inkeep/agents-run-api 0.19.5 → 0.19.7
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-7IMXW4RD.js → chunk-IBMWBEXH.js} +1 -1
- package/dist/{chunk-NZHNG4A3.js → chunk-LHCIBW34.js} +3 -1
- package/dist/{chunk-XO4RG36I.js → chunk-RZXPMRBA.js} +1 -1
- package/dist/{chunk-QRT6EIUX.js → chunk-T5AYIGCU.js} +2 -2
- package/dist/{conversations-OFIM2WLJ.js → conversations-6OGSD67W.js} +1 -1
- package/dist/dbClient-CSP4YJOO.js +1 -0
- package/dist/index.cjs +358 -314
- package/dist/index.js +360 -318
- package/dist/instrumentation.cjs +3 -1
- package/dist/instrumentation.js +1 -1
- package/package.json +2 -2
- package/dist/dbClient-UQHVUUUY.js +0 -1
|
@@ -11,9 +11,11 @@ var envSchema = z.object({
|
|
|
11
11
|
TURSO_AUTH_TOKEN: z.string().optional(),
|
|
12
12
|
AGENTS_RUN_API_URL: z.string().optional().default("http://localhost:3003"),
|
|
13
13
|
LOG_LEVEL: z.enum(["trace", "debug", "info", "warn", "error"]).optional().default("debug"),
|
|
14
|
+
NANGO_SERVER_URL: z.string().optional().default("https://api.nango.dev"),
|
|
14
15
|
NANGO_SECRET_KEY: z.string().optional(),
|
|
15
|
-
OPENAI_API_KEY: z.string().optional(),
|
|
16
16
|
ANTHROPIC_API_KEY: z.string(),
|
|
17
|
+
OPENAI_API_KEY: z.string().optional(),
|
|
18
|
+
GOOGLE_GENERATIVE_AI_API_KEY: z.string().optional(),
|
|
17
19
|
INKEEP_AGENTS_RUN_API_BYPASS_SECRET: z.string().optional(),
|
|
18
20
|
OTEL_BSP_SCHEDULE_DELAY: z.coerce.number().optional().default(500),
|
|
19
21
|
OTEL_BSP_MAX_EXPORT_BATCH_SIZE: z.coerce.number().optional().default(64)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getLogger } from './chunk-A2S7GSHL.js';
|
|
2
|
-
import { env } from './chunk-
|
|
2
|
+
import { env } from './chunk-LHCIBW34.js';
|
|
3
3
|
import { getNodeAutoInstrumentations } from '@opentelemetry/auto-instrumentations-node';
|
|
4
4
|
import { BaggageSpanProcessor, ALLOW_ALL_BAGGAGE_KEYS } from '@opentelemetry/baggage-span-processor';
|
|
5
5
|
import { AsyncLocalStorageContextManager } from '@opentelemetry/context-async-hooks';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { dbClient_default } from './chunk-
|
|
1
|
+
import { dbClient_default } from './chunk-IBMWBEXH.js';
|
|
2
2
|
import { createMessage, getConversationHistory } from '@inkeep/agents-core';
|
|
3
3
|
import { nanoid } from 'nanoid';
|
|
4
4
|
|
|
@@ -191,7 +191,7 @@ async function getConversationScopedArtifacts(params) {
|
|
|
191
191
|
return [];
|
|
192
192
|
}
|
|
193
193
|
const { getLedgerArtifacts } = await import('@inkeep/agents-core');
|
|
194
|
-
const dbClient = (await import('./dbClient-
|
|
194
|
+
const dbClient = (await import('./dbClient-CSP4YJOO.js')).default;
|
|
195
195
|
const visibleTaskIds = visibleMessages.map((msg) => msg.taskId).filter((taskId) => Boolean(taskId));
|
|
196
196
|
const referenceArtifacts = [];
|
|
197
197
|
for (const taskId of visibleTaskIds) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { createDefaultConversationHistoryConfig, getConversationScopedArtifacts, getFormattedConversationHistory, getFullConversationContext, getScopedHistory, getUserFacingHistory, saveA2AMessageResponse } from './chunk-
|
|
1
|
+
export { createDefaultConversationHistoryConfig, getConversationScopedArtifacts, getFormattedConversationHistory, getFullConversationContext, getScopedHistory, getUserFacingHistory, saveA2AMessageResponse } from './chunk-T5AYIGCU.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { dbClient_default as default } from './chunk-IBMWBEXH.js';
|