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:
Heiner Lohaus 2024-12-30 02:51:36 +01:00
parent e0f5e83729
commit 75fe95cbed
32 changed files with 1119 additions and 454 deletions

View file

@ -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