From 5e5c689743d0e5206bc78538700e96820b38af70 Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@proton.me> Date: Mon, 1 May 2023 00:31:29 +0200 Subject: [PATCH] provider: add google flan t5 xxl --- src/provider/hfgoogleflant5xxl.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/provider/hfgoogleflant5xxl.py diff --git a/src/provider/hfgoogleflant5xxl.py b/src/provider/hfgoogleflant5xxl.py new file mode 100644 index 0000000..50a02c5 --- /dev/null +++ b/src/provider/hfgoogleflant5xxl.py @@ -0,0 +1,7 @@ +from .huggingface import BaseHFProvider + +class HuggingFaceGoogleFlanT5XXLProvider(BaseHFProvider): + name = "Google Flan T5 XXL" + slug = "hfgoogleflant5xxl" + model = "google/flan-t5-xxl" + authorization = False \ No newline at end of file