mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
10 lines
No EOL
237 B
Python
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 |