mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-27 23:58:51 +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
|
|
}
|