gpt4free/g4f/Provider/needs_auth/xAI.py
Heiner Lohaus 486e9a9122 Add login_url to authed providers
Create a home page for the GUI
Fix CopyButton in Code Highlight
2025-01-03 02:40:21 +01:00

10 lines
No EOL
237 B
Python

from __future__ import annotations
from .OpenaiAPI import OpenaiAPI
class xAI(OpenaiAPI):
label = "xAI"
url = "https://console.x.ai"
login_url = "https://console.x.ai"
api_base = "https://api.x.ai/v1"
working = True