LiteLLM Merged PR's (#5538)

* Fix typo in #5509 (#5532)

* Reapply "(bedrock): Fix usage with Cloudflare AI Gateway, and proxies in gener…" (#5519)

This reverts commit 995019c08a.

* (bedrock): Fix obvious typo

* test: cleanup linting error

---------

Co-authored-by: David Manouchehri <david.manouchehri@ai.moda>
This commit is contained in:
Krish Dholakia 2024-09-05 17:11:31 -07:00 committed by GitHub
parent d8ef8c133e
commit 6cd8951f56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 33 additions and 17 deletions

View file

@ -146,4 +146,4 @@ def trade(model_name: str) -> List[Trade]: # type: ignore
)
def test_function_call_parsing(model):
trades = trade(model)
print([trade.order for trade in trades])
print([trade.order for trade in trades if trade is not None])