mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-24 11:34:02 +03:00
9 lines
198 B
Python
9 lines
198 B
Python
from __future__ import annotations
|
|
|
|
from .OpenaiAPI import OpenaiAPI
|
|
|
|
class xAI(OpenaiAPI):
|
|
label = "xAI"
|
|
url = "https://console.x.ai"
|
|
api_base = "https://api.x.ai/v1"
|
|
working = True |