@inkeep/agents-run-api 0.26.1 → 0.27.0
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-TVLDBLRZ.js → chunk-DWEFKQTA.js} +1 -1
- package/dist/{chunk-XLUE6U2L.js → chunk-IMJLQGAX.js} +2 -2
- package/dist/{chunk-IBMWBEXH.js → chunk-TRNLEUK2.js} +1 -1
- package/dist/{chunk-LHCIBW34.js → chunk-Z4TYO3W3.js} +1 -0
- package/dist/{conversations-H2TSLD3U.js → conversations-V6DNH5MW.js} +1 -1
- package/dist/dbClient-PLEBWGM4.js +1 -0
- package/dist/index.cjs +503 -195
- package/dist/index.js +500 -194
- package/dist/instrumentation.cjs +1 -0
- package/dist/instrumentation.js +1 -1
- package/package.json +2 -2
- package/dist/dbClient-CSP4YJOO.js +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { env } from './chunk-
|
|
1
|
+
import { env } from './chunk-Z4TYO3W3.js';
|
|
2
2
|
import { getLogger } from './chunk-A2S7GSHL.js';
|
|
3
3
|
import { getNodeAutoInstrumentations } from '@opentelemetry/auto-instrumentations-node';
|
|
4
4
|
import { BaggageSpanProcessor, ALLOW_ALL_BAGGAGE_KEYS } from '@opentelemetry/baggage-span-processor';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { dbClient_default } from './chunk-
|
|
1
|
+
import { dbClient_default } from './chunk-TRNLEUK2.js';
|
|
2
2
|
import { createMessage, generateId, getConversationHistory } from '@inkeep/agents-core';
|
|
3
3
|
|
|
4
4
|
function createDefaultConversationHistoryConfig(mode = "full") {
|
|
@@ -190,7 +190,7 @@ async function getConversationScopedArtifacts(params) {
|
|
|
190
190
|
return [];
|
|
191
191
|
}
|
|
192
192
|
const { getLedgerArtifacts } = await import('@inkeep/agents-core');
|
|
193
|
-
const dbClient = (await import('./dbClient-
|
|
193
|
+
const dbClient = (await import('./dbClient-PLEBWGM4.js')).default;
|
|
194
194
|
const visibleTaskIds = visibleMessages.map((msg) => msg.taskId).filter((taskId) => Boolean(taskId));
|
|
195
195
|
const referenceArtifacts = [];
|
|
196
196
|
for (const taskId of visibleTaskIds) {
|
|
@@ -17,6 +17,7 @@ var envSchema = z.object({
|
|
|
17
17
|
OPENAI_API_KEY: z.string().optional(),
|
|
18
18
|
GOOGLE_GENERATIVE_AI_API_KEY: z.string().optional(),
|
|
19
19
|
INKEEP_AGENTS_RUN_API_BYPASS_SECRET: z.string().optional(),
|
|
20
|
+
INKEEP_AGENTS_JWT_SIGNING_SECRET: z.string().optional(),
|
|
20
21
|
OTEL_BSP_SCHEDULE_DELAY: z.coerce.number().optional().default(500),
|
|
21
22
|
OTEL_BSP_MAX_EXPORT_BATCH_SIZE: z.coerce.number().optional().default(64)
|
|
22
23
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { createDefaultConversationHistoryConfig, getConversationScopedArtifacts, getFormattedConversationHistory, getFullConversationContext, getScopedHistory, getUserFacingHistory, saveA2AMessageResponse } from './chunk-
|
|
1
|
+
export { createDefaultConversationHistoryConfig, getConversationScopedArtifacts, getFormattedConversationHistory, getFullConversationContext, getScopedHistory, getUserFacingHistory, saveA2AMessageResponse } from './chunk-IMJLQGAX.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { dbClient_default as default } from './chunk-TRNLEUK2.js';
|