We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 997c811 commit 13d1517Copy full SHA for 13d1517
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Unreleased
4
5
+- Fix openai api key read from config.
6
+
7
## 0.11.2
8
9
- Fix error field on tool call outputs.
src/eca/llm_api.clj
@@ -34,7 +34,7 @@
34
llm-providers.anthropic/base-url))
35
36
(defn ^:private openai-api-key [config]
37
- (or (:openaiapikey config)
+ (or (:openaiApiKey config)
38
(config/get-env "OPENAI_API_KEY")))
39
40
(defn ^:private openai-api-url []
0 commit comments