Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
chansung
/
zero2story
like
179
Build error
App
Files
Files
Community
4
9130a6b
zero2story
/
modules
/
llms
/
utils.py
chansung
.
3332aa4
about 1 year ago
raw
Copy download link
history
blame
Safe
184 Bytes
from
modules.llms
import
*
def
get_llm_factory
(
llm_type:
str
) ->
'PaLM'
:
factory =
None
if
llm_type.lower() ==
'palm'
:
factory = PaLMFactory()
return
factory