mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 19:24:27 +00:00
test: add tests for github copilot
This commit is contained in:
parent
e394d45513
commit
00d2d90535
7 changed files with 282 additions and 62 deletions
|
@ -17,9 +17,22 @@ DEFAULT_HEADERS = {
|
|||
"User-Agent": "litellm",
|
||||
}
|
||||
|
||||
class GetDeviceCodeError(Exception): pass
|
||||
class GetAccessTokenError(Exception): pass
|
||||
class APIKeyExpiredError(Exception): pass
|
||||
class RefreshAPIKeyError(Exception): pass
|
||||
class GetAPIKeyError(Exception): pass
|
||||
|
||||
class GetDeviceCodeError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class GetAccessTokenError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class APIKeyExpiredError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class RefreshAPIKeyError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class GetAPIKeyError(Exception):
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue