mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
- Mark FreeRouter provider as not working by changing working=True to working=False - Fix line ending issues in DuckDuckGo.py and LMArenaProvider.py by ensuring proper newline at end of file
9 lines
256 B
Python
9 lines
256 B
Python
from __future__ import annotations
|
|
|
|
from ..template import OpenaiTemplate
|
|
|
|
class FreeRouter(OpenaiTemplate):
|
|
label = "CablyAI FreeRouter"
|
|
url = "https://freerouter.cablyai.com"
|
|
api_base = "https://freerouter.cablyai.com/v1"
|
|
working = False
|