forked from phoenix/litellm-mirror
refactor(bedrock.py-+-cohere.py): making bedrock and cohere compatible with openai v1 sdk
This commit is contained in:
parent
39c2597c33
commit
547598a134
7 changed files with 82 additions and 74 deletions
|
@ -2,7 +2,7 @@
|
|||
import os, copy, types
|
||||
import json
|
||||
from enum import Enum
|
||||
import requests
|
||||
import httpx, requests
|
||||
import time
|
||||
import litellm
|
||||
from typing import Callable, Dict, List, Any
|
||||
|
@ -14,6 +14,8 @@ class HuggingfaceError(Exception):
|
|||
def __init__(self, status_code, message):
|
||||
self.status_code = status_code
|
||||
self.message = message
|
||||
self.response = httpx.Response(status_code=status_code)
|
||||
self.request = self.response.request
|
||||
super().__init__(
|
||||
self.message
|
||||
) # Call the base class constructor with the parameters it needs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue