mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
Add continue messages support,
Remove old text_to_speech service from gui Update gui and client readmes, Add HuggingSpaces group provider; Add providers parameters config forms to gui
This commit is contained in:
parent
e0f5e83729
commit
75fe95cbed
32 changed files with 1119 additions and 454 deletions
|
|
@ -32,7 +32,8 @@ class HuggingChat(AbstractProvider, ProviderModelMixin):
|
|||
default_model = "Qwen/Qwen2.5-72B-Instruct"
|
||||
default_image_model = "black-forest-labs/FLUX.1-dev"
|
||||
image_models = [
|
||||
"black-forest-labs/FLUX.1-dev"
|
||||
"black-forest-labs/FLUX.1-dev",
|
||||
"black-forest-labs/FLUX.1-schnell",
|
||||
]
|
||||
models = [
|
||||
default_model,
|
||||
|
|
@ -59,9 +60,10 @@ class HuggingChat(AbstractProvider, ProviderModelMixin):
|
|||
"hermes-3": "NousResearch/Hermes-3-Llama-3.1-8B",
|
||||
"mistral-nemo": "mistralai/Mistral-Nemo-Instruct-2407",
|
||||
"phi-3.5-mini": "microsoft/Phi-3.5-mini-instruct",
|
||||
|
||||
|
||||
### Image ###
|
||||
"flux-dev": "black-forest-labs/FLUX.1-dev",
|
||||
"flux-schnell": "black-forest-labs/FLUX.1-schnell",
|
||||
}
|
||||
|
||||
@classmethod
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue