Spaces:
Sleeping
Sleeping
File size: 184 Bytes
3332aa4 |
1 2 3 4 5 6 7 8 9 |
from modules.llms import *
def get_llm_factory(llm_type: str) -> 'PaLM':
factory = None
if llm_type.lower() == 'palm':
factory = PaLMFactory()
return factory
|