Bavarder/src/providers/hfgoogleflant5xxl.py

12 lines
263 B
Python
Raw Normal View History

2023-04-30 22:31:29 +00:00
from .huggingface import BaseHFProvider
2023-04-30 23:45:31 +00:00
2023-04-30 22:31:29 +00:00
class HuggingFaceGoogleFlanT5XXLProvider(BaseHFProvider):
name = "Google Flan T5 XXL"
slug = "hfgoogleflant5xxl"
model = "google/flan-t5-xxl"
@property
def require_api_key(self):
2023-05-06 17:24:25 +00:00
return False