mirror of
https://github.com/xtekky/gpt4free.git
synced 2026-02-04 23:01:46 -08:00
15 lines
No EOL
439 B
Python
15 lines
No EOL
439 B
Python
from __future__ import annotations
|
|
|
|
from ..template import OpenaiTemplate
|
|
from ...config import DEFAULT_MODEL
|
|
|
|
class Nvidia(OpenaiTemplate):
|
|
label = "Nvidia"
|
|
base_url = "https://integrate.api.nvidia.com/v1"
|
|
backup_url = "https://g4f.space/api/nvidia"
|
|
login_url = "https://google.com"
|
|
url = "https://build.nvidia.com"
|
|
working = True
|
|
active_by_default = True
|
|
default_model = DEFAULT_MODEL
|
|
add_user = False |