-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(anthropic): add support for custom HTTP headers in Anthropic API…
… requests (#2343) Add the ability to specify custom HTTP headers for Anthropic API requests through AnthropicChatOptions. This allows users to override or add headers for authentication, tracking, or other API-specific requirements. - Add httpHeaders field to AnthropicChatOptions with appropriate getters/setters - Implement header merging between default and runtime options - Update AnthropicApi to accept additional HTTP headers in API calls - Add integration test demonstrating API key override via custom headers - Update documentation with the new configuration property Resolves #2335 Signed-off-by: Christian Tzolov <[email protected]>
- Loading branch information
Showing
5 changed files
with
157 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
...test/java/org/springframework/ai/anthropic/AnthropicChatModelAdditionalHttpHeadersIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Copyright 2025-2025 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.ai.anthropic; | ||
|
||
import java.util.Map; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable; | ||
|
||
import org.springframework.ai.anthropic.api.AnthropicApi; | ||
import org.springframework.ai.chat.model.ChatResponse; | ||
import org.springframework.ai.chat.prompt.Prompt; | ||
import org.springframework.ai.retry.NonTransientAiException; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.SpringBootConfiguration; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.context.annotation.Bean; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.assertj.core.api.AssertionsForClassTypes.assertThatThrownBy; | ||
|
||
/** | ||
* @author Christian Tzolov | ||
*/ | ||
@SpringBootTest(classes = AnthropicChatModelAdditionalHttpHeadersIT.Config.class) | ||
@EnabledIfEnvironmentVariable(named = "ANTHROPIC_API_KEY", matches = ".+") | ||
public class AnthropicChatModelAdditionalHttpHeadersIT { | ||
|
||
@Autowired | ||
private AnthropicChatModel chatModel; | ||
|
||
@Test | ||
void additionalApiKeyHeader() { | ||
|
||
assertThatThrownBy(() -> this.chatModel.call("Tell me a joke")).isInstanceOf(NonTransientAiException.class); | ||
|
||
// Use the additional headers to override the Api Key. | ||
// Mind that you have to prefix the Api Key with the "Bearer " prefix. | ||
AnthropicChatOptions options = AnthropicChatOptions.builder() | ||
.httpHeaders(Map.of("x-api-key", System.getenv("ANTHROPIC_API_KEY"))) | ||
.build(); | ||
|
||
ChatResponse response = this.chatModel.call(new Prompt("Tell me a joke", options)); | ||
|
||
assertThat(response).isNotNull(); | ||
} | ||
|
||
@SpringBootConfiguration | ||
static class Config { | ||
|
||
@Bean | ||
public AnthropicApi anthropicApi() { | ||
return new AnthropicApi("Invalid API Key"); | ||
} | ||
|
||
@Bean | ||
public AnthropicChatModel anthropicChatModel(AnthropicApi api) { | ||
return AnthropicChatModel.builder().anthropicApi(api).build(); | ||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters