mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
* feat: add support for copilot provider * test: add tests for github copilot * chore: clean up github copilot authenticator * test: add test for github copilot authenticator * test: add test for github copilot for sonnet 3.7 thought model --------- Co-authored-by: Krish Dholakia <krrishdholakia@gmail.com>
17 lines
362 B
Python
17 lines
362 B
Python
from .constants import (
|
|
GITHUB_COPILOT_API_BASE,
|
|
CHAT_COMPLETION_ENDPOINT,
|
|
GITHUB_COPILOT_MODEL,
|
|
GetAccessTokenError,
|
|
GetAPIKeyError,
|
|
RefreshAPIKeyError,
|
|
)
|
|
|
|
__all__ = [
|
|
"GITHUB_COPILOT_API_BASE",
|
|
"CHAT_COMPLETION_ENDPOINT",
|
|
"GITHUB_COPILOT_MODEL",
|
|
"GetAccessTokenError",
|
|
"GetAPIKeyError",
|
|
"RefreshAPIKeyError",
|
|
]
|