@inkeep/create-agents 0.0.0-dev-20250917222639 → 0.0.0-dev-20250919052931
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/utils.js +6 -4
- package/package.json +1 -1
package/dist/utils.js
CHANGED
|
@@ -281,13 +281,15 @@ GOOGLE_GENERATIVE_AI_API_KEY=${config.googleKey || 'your-google-key-here'}
|
|
|
281
281
|
INKEEP_AGENTS_MANAGE_API_URL="http://localhost:3002"
|
|
282
282
|
INKEEP_AGENTS_RUN_API_URL="http://localhost:3003"
|
|
283
283
|
|
|
284
|
-
# SigNoz
|
|
284
|
+
# SigNoz Configuration
|
|
285
285
|
SIGNOZ_URL=your-signoz-url-here
|
|
286
286
|
SIGNOZ_API_KEY=your-signoz-api-key-here
|
|
287
287
|
|
|
288
|
-
#
|
|
289
|
-
|
|
290
|
-
|
|
288
|
+
# OTEL Configuration
|
|
289
|
+
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=https://ingest.us.signoz.cloud:443/v1/traces
|
|
290
|
+
OTEL_EXPORTER_OTLP_TRACES_HEADERS="signoz-ingestion-key=<your-ingestion-key>"
|
|
291
|
+
|
|
292
|
+
# Nango Configuration
|
|
291
293
|
NANGO_SECRET_KEY=
|
|
292
294
|
`;
|
|
293
295
|
await fs.writeFile('.env', envContent);
|