Merge pull request #260 from trustgraph-ai/claude-token-fix

Fix for Claude key envvar
This commit is contained in:
Jack Colquitt 2025-01-07 08:55:23 -08:00 committed by GitHub
commit c7e76ffc2f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@ local prompts = import "prompts/mixtral.jsonnet";
create:: function(engine) create:: function(engine)
local envSecrets = engine.envSecrets("claude-credentials") local envSecrets = engine.envSecrets("claude-credentials")
.with_env_var("CLAUDE_KEY_TOKEN", "claude-key"); .with_env_var("CLAUDE_KEY", "claude-key");
local container = local container =
engine.container("text-completion") engine.container("text-completion")