mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-05 08:07:05 +00:00
test(e2e): fix EndpointsClient gateway attribute left behind by the ProxyClient rename
This commit is contained in:
parent
c1b6c4062e
commit
bcc5fadbb1
1 changed files with 2 additions and 2 deletions
|
|
@ -88,9 +88,9 @@ def _system_reminder_turn() -> RichMessage:
|
|||
|
||||
|
||||
def _post_messages(client: EndpointsClient, key: str, body: RichMessagesRequest) -> Result[MessagesResult]:
|
||||
return client.gateway.transport.post(
|
||||
return client.proxy.transport.post(
|
||||
"/v1/messages",
|
||||
headers=client.gateway.transport.bearer(key),
|
||||
headers=client.proxy.transport.bearer(key),
|
||||
json=body,
|
||||
response_type=MessagesResult,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue