Unverified Commit d75e8aea authored by takatost's avatar takatost Committed by GitHub

feat: disable anthropic retry (#1067)

parent 2eba98a4
...@@ -29,6 +29,7 @@ class AnthropicLLM(ChatAnthropic): ...@@ -29,6 +29,7 @@ class AnthropicLLM(ChatAnthropic):
base_url=values["anthropic_api_url"], base_url=values["anthropic_api_url"],
api_key=values["anthropic_api_key"], api_key=values["anthropic_api_key"],
timeout=values["default_request_timeout"], timeout=values["default_request_timeout"],
max_retries=0,
connection_pool_limits=Limits(max_connections=200, max_keepalive_connections=100), connection_pool_limits=Limits(max_connections=200, max_keepalive_connections=100),
) )
values["async_client"] = anthropic.AsyncAnthropic( values["async_client"] = anthropic.AsyncAnthropic(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment