@inkeep/agents-cli 0.43.0 → 0.45.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.
Files changed (2) hide show
  1. package/dist/env.js +8 -8
  2. package/package.json +3 -3
package/dist/env.js CHANGED
@@ -4,14 +4,14 @@ import { z } from "zod";
4
4
  //#region src/env.ts
5
5
  loadEnvironmentFiles();
6
6
  const envSchema = z.object({
7
- DEBUG: z.string().optional(),
8
- ANTHROPIC_API_KEY: z.string().optional(),
9
- OPENAI_API_KEY: z.string().optional(),
10
- GOOGLE_GENERATIVE_AI_API_KEY: z.string().optional(),
11
- LANGFUSE_SECRET_KEY: z.string().optional(),
12
- LANGFUSE_PUBLIC_KEY: z.string().optional(),
13
- LANGFUSE_BASEURL: z.string().optional().default("https://cloud.langfuse.com"),
14
- LANGFUSE_ENABLED: z.string().optional().transform((val) => val === "true")
7
+ DEBUG: z.string().optional().describe("Enable debug mode for verbose logging"),
8
+ ANTHROPIC_API_KEY: z.string().optional().describe("Anthropic API key for Claude models. Get from https://console.anthropic.com/"),
9
+ OPENAI_API_KEY: z.string().optional().describe("OpenAI API key for GPT models. Get from https://platform.openai.com/"),
10
+ GOOGLE_GENERATIVE_AI_API_KEY: z.string().optional().describe("Google Generative AI API key for Gemini models"),
11
+ LANGFUSE_SECRET_KEY: z.string().optional().describe("Langfuse secret key for LLM observability"),
12
+ LANGFUSE_PUBLIC_KEY: z.string().optional().describe("Langfuse public key for LLM observability"),
13
+ LANGFUSE_BASEURL: z.string().optional().default("https://cloud.langfuse.com").describe("Langfuse server base URL"),
14
+ LANGFUSE_ENABLED: z.string().optional().transform((val) => val === "true").describe("Enable Langfuse LLM observability (set to \"true\" to enable)")
15
15
  });
16
16
  const parseEnv = () => {
17
17
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.43.0",
3
+ "version": "0.45.0",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -40,8 +40,8 @@
40
40
  "tsx": "^4.20.5",
41
41
  "yaml": "^2.7.0",
42
42
  "zod": "^4.1.11",
43
- "@inkeep/agents-core": "^0.43.0",
44
- "@inkeep/agents-sdk": "^0.43.0"
43
+ "@inkeep/agents-core": "^0.45.0",
44
+ "@inkeep/agents-sdk": "^0.45.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/degit": "^2.8.6",