provider: fix slug

This commit is contained in:
0xMRTT 2023-05-07 15:16:26 +02:00
parent 75f4578bce
commit ad287c34c2
Signed by: 0xMRTT
GPG Key ID: 19C1449A774028BD
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ from gi.repository import Gtk, Adw, GLib
class HuggingFaceDialoGPTLargeProvider(BaseHFProvider):
name = "DialoGPT"
slug = "dialogpt"
slug = "hfdialogpt"
model = "microsoft/DialoGPT-large"
@property

View File

@ -3,7 +3,7 @@ from .huggingface import BaseHFProvider
class HuggingFaceGPT2Provider(BaseHFProvider):
name = "GPT 2"
slug = "gpt2"
slug = "hfgpt2"
model = "gpt2"
@property