| commit | 44dfdce5edac084927f122988b6f5b783d67c93a | [log] [tgz] |
|---|---|---|
| author | Josh Bleecher Snyder <josharian@gmail.com> | Wed Jul 23 13:02:29 2025 -0700 |
| committer | Josh Bleecher Snyder <josharian@gmail.com> | Thu Jul 24 12:20:54 2025 -0700 |
| tree | dae838d2e9f89908f34edbc88c1019de10b5bf23 | |
| parent | 0d04c13e27e0008e9da1eb458a74ff8f7a55f682 [diff] [blame] |
llm/ant: add APIKeyEnv
diff --git a/llm/ant/ant.go b/llm/ant/ant.go index 212c090..10b474e 100644 --- a/llm/ant/ant.go +++ b/llm/ant/ant.go
@@ -23,6 +23,7 @@ // See https://docs.anthropic.com/en/docs/about-claude/models/all-models for // current maximums. There's currently a flag to enable 128k output (output-128k-2025-02-19) DefaultMaxTokens = 8192 + APIKeyEnv = "ANTHROPIC_API_KEY" DefaultURL = "https://api.anthropic.com/v1/messages" )