Skip to content

Commit fe1d11e

Browse files
committed
Bump db version
1 parent 6b479f3 commit fe1d11e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/eca/db.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
(def ^:private logger-tag "[DB]")
1616

17-
(def version 2)
17+
(def version 3)
1818

1919
(defonce initial-db
2020
{:client-info {}

src/eca/llm_providers/anthropic.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"anthropic-version" "2023-06-01"
3939
"Content-Type" "application/json"}
4040
"x-api-key" (when-not oauth? api-key)
41-
"Authrozation" (when oauth? (str "Bearer " api-key))
41+
"Authorization" (when oauth? (str "Bearer " api-key))
4242
"anthropic-beta" (when oauth? "oauth-2025-04-20"))
4343
:body (json/generate-string body)
4444
:throw-exceptions? false

0 commit comments

Comments
 (0)