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 6b479f3 commit fe1d11eCopy full SHA for fe1d11e
src/eca/db.clj
@@ -14,7 +14,7 @@
14
15
(def ^:private logger-tag "[DB]")
16
17
-(def version 2)
+(def version 3)
18
19
(defonce initial-db
20
{:client-info {}
src/eca/llm_providers/anthropic.clj
@@ -38,7 +38,7 @@
38
"anthropic-version" "2023-06-01"
39
"Content-Type" "application/json"}
40
"x-api-key" (when-not oauth? api-key)
41
- "Authrozation" (when oauth? (str "Bearer " api-key))
+ "Authorization" (when oauth? (str "Bearer " api-key))
42
"anthropic-beta" (when oauth? "oauth-2025-04-20"))
43
:body (json/generate-string body)
44
:throw-exceptions? false
0 commit comments