返回提交历史
Modified
g4f/Provider/nexra/NexraBing.py
+0
-1
Modified
g4f/Provider/nexra/NexraBlackbox.py
+1
-1
Modified
g4f/Provider/nexra/NexraChatGPT.py
+1
-3
Modified
g4f/Provider/nexra/NexraChatGPT4o.py
+1
-2
Modified
g4f/Provider/nexra/NexraChatGptV2.py
+1
-2
Modified
g4f/Provider/nexra/NexraChatGptWeb.py
+1
-3
Modified
g4f/Provider/nexra/NexraDallE.py
+1
-1
Modified
g4f/Provider/nexra/NexraDallE2.py
+1
-1
Modified
g4f/Provider/nexra/NexraDalleMini.py
+1
-1
Modified
g4f/Provider/nexra/NexraEmi.py
+1
-1
Modified
g4f/Provider/nexra/NexraFluxPro.py
+1
-1
Modified
g4f/Provider/nexra/NexraLLaMA31.py
+1
-1
Modified
g4f/Provider/nexra/NexraQwen.py
+1
-1
XFEstudio/gpt4free
All nexra providers are temporarily disabled
7a13dad5
代码差异
13 个文件
+12
-19
@@ -14,7 +14,6 @@ class NexraBing(AsyncGeneratorProvider, ProviderModelMixin):
14
14
url = "https://nexra.aryahcr.cc/documentation/bing/en"
15
15
api_endpoint = "https://nexra.aryahcr.cc/api/chat/complements"
16
16
working = False
17
supports_gpt_4 = False
18
17
supports_stream = False
19
18
20
19
default_model = 'Bing (Balanced)'
@@ -10,7 +10,7 @@ class NexraBlackbox(AsyncGeneratorProvider, ProviderModelMixin):
10
10
label = "Nexra Blackbox"
11
11
url = "https://nexra.aryahcr.cc/documentation/blackbox/en"
12
12
api_endpoint = "https://nexra.aryahcr.cc/api/chat/complements"
13
working = True
13
working = False
14
14
supports_stream = True
15
15
16
16
default_model = 'blackbox'
@@ -12,9 +12,7 @@ class NexraChatGPT(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra ChatGPT"
13
13
url = "https://nexra.aryahcr.cc/documentation/chatgpt/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/chat/gpt"
15
working = True
16
supports_gpt_35_turbo = True
17
supports_gpt_4 = True
15
working = False
18
16
supports_stream = False
19
17
20
18
default_model = 'gpt-3.5-turbo'
@@ -11,8 +11,7 @@ class NexraChatGPT4o(AsyncGeneratorProvider, ProviderModelMixin):
11
11
label = "Nexra ChatGPT4o"
12
12
url = "https://nexra.aryahcr.cc/documentation/chatgpt/en"
13
13
api_endpoint = "https://nexra.aryahcr.cc/api/chat/complements"
14
working = True
15
supports_gpt_4 = True
14
working = False
16
15
supports_stream = False
17
16
18
17
default_model = 'gpt-4o'
@@ -12,8 +12,7 @@ class NexraChatGptV2(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra ChatGPT v2"
13
13
url = "https://nexra.aryahcr.cc/documentation/chatgpt/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/chat/complements"
15
working = True
16
supports_gpt_4 = True
15
working = False
17
16
supports_stream = True
18
17
19
18
default_model = 'chatgpt'
@@ -12,9 +12,7 @@ class NexraChatGptWeb(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra ChatGPT Web"
13
13
url = "https://nexra.aryahcr.cc/documentation/chatgpt/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/chat/{}"
15
working = True
16
supports_gpt_35_turbo = True
17
supports_gpt_4 = True
15
working = False
18
16
supports_stream = True
19
17
20
18
default_model = 'gptweb'
@@ -12,7 +12,7 @@ class NexraDallE(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra DALL-E"
13
13
url = "https://nexra.aryahcr.cc/documentation/dall-e/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/image/complements"
15
working = True
15
working = False
16
16
17
17
default_model = 'dalle'
18
18
models = [default_model]
@@ -12,7 +12,7 @@ class NexraDallE2(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra DALL-E 2"
13
13
url = "https://nexra.aryahcr.cc/documentation/dall-e/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/image/complements"
15
working = True
15
working = False
16
16
17
17
default_model = 'dalle2'
18
18
models = [default_model]
@@ -12,7 +12,7 @@ class NexraDalleMini(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra DALL-E Mini"
13
13
url = "https://nexra.aryahcr.cc/documentation/dall-e/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/image/complements"
15
working = True
15
working = False
16
16
17
17
default_model = 'dalle-mini'
18
18
models = [default_model]
@@ -12,7 +12,7 @@ class NexraEmi(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra Emi"
13
13
url = "https://nexra.aryahcr.cc/documentation/emi/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/image/complements"
15
working = True
15
working = False
16
16
17
17
default_model = 'emi'
18
18
models = [default_model]
@@ -12,7 +12,7 @@ class NexraFluxPro(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra Flux PRO"
13
13
url = "https://nexra.aryahcr.cc/documentation/flux-pro/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/image/complements"
15
working = True
15
working = False
16
16
17
17
default_model = 'flux'
18
18
models = [default_model]
@@ -12,7 +12,7 @@ class NexraLLaMA31(AsyncGeneratorProvider, ProviderModelMixin):
12
12
label = "Nexra LLaMA 3.1"
13
13
url = "https://nexra.aryahcr.cc/documentation/llama-3.1/en"
14
14
api_endpoint = "https://nexra.aryahcr.cc/api/chat/complements"
15
working = True
15
working = False
16
16
supports_stream = True
17
17
18
18
default_model = 'llama-3.1'