mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-25 11:30:41 -08:00
12 lines
353 B
Python
12 lines
353 B
Python
from __future__ import annotations
|
|
|
|
from .OpenaiAPI import OpenaiAPI
|
|
|
|
class GithubCopilotAPI(OpenaiAPI):
|
|
label = "GitHub Copilot API"
|
|
url = "https://github.com/copilot"
|
|
login_url = "https://aider.chat/docs/llms/github.html"
|
|
working = True
|
|
api_base = "https://api.githubcopilot.com"
|
|
needs_auth = True
|
|
models_needs_auth = True
|