mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-01-28 07:04:13 +00:00
7 lines
154 B
Python
7 lines
154 B
Python
from pyGpt4All.backends.llamacpp import LLAMACPP
|
|
from pyGpt4All.backends.gpt_j import GPT_J
|
|
BACKENDS_LIST={
|
|
"llama_cpp":LLAMACPP,
|
|
"gpt_j":GPT_J
|
|
}
|