[github] Add Github Copilot

This commit is contained in:
Jeroen Evens
2026-02-06 18:38:18 +01:00
parent 831eb07945
commit b161fa4f9a
3 changed files with 13 additions and 2 deletions

View File

@@ -892,7 +892,9 @@ def status():
p = getattr(config.providers, spec.name, None)
if p is None:
continue
if spec.is_local:
if spec.is_oauth:
console.print(f"{spec.label}: [green]✓ (OAuth)[/green]")
elif spec.is_local:
# Local deployments show api_base instead of api_key
if p.api_base:
console.print(f"{spec.label}: [green]✓ {p.api_base}[/green]")