mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 11:43:54 +00:00
feat(proxy_server.py): working /v1/messages
with config.yaml
Adds async router support for adapter_completion call
This commit is contained in:
parent
2f8dbbeb97
commit
31829855c0
7 changed files with 362 additions and 14 deletions
|
@ -423,7 +423,7 @@ class AnthropicConfig:
|
|||
type="tool_use",
|
||||
id=tool_call.id,
|
||||
name=tool_call.function.name,
|
||||
input=tool_call.function.arguments,
|
||||
input=json.loads(tool_call.function.arguments),
|
||||
)
|
||||
)
|
||||
elif choice.message.content is not None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue