mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-18 20:17:50 +00:00
added installers
This commit is contained in:
parent
da47cb3644
commit
28433add5c
@ -14,7 +14,7 @@ echo " \:\ \ \:\ /:/ / \:\ \ \:\ \ /:/ / \:\ \:\__\ "
|
||||
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
||||
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
||||
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
||||
echo "V9.5"
|
||||
echo "V12"
|
||||
echo "-----------------"
|
||||
echo "By ParisNeo"
|
||||
echo "-----------------"
|
||||
@ -150,7 +150,7 @@ mkdir -p $INSTALL_ENV_DIR/bin
|
||||
|
||||
|
||||
echo "Select the default binding to be installed:"
|
||||
options=("None (install the binding later)" "Local binding - ollama" "Local binding - python_llama_cpp" "Local binding - bs_exllamav2" "Remote binding - open_router" "Remote binding - open_ai" "Remote binding - mistral_ai")
|
||||
options=("None (install the binding later)" "Local binding - ollama" "Local binding - python_llama_cpp" "Local binding - bs_exllamav2" "Remote binding - open_router" "Remote binding - open_ai" "Remote binding - mistral_ai" "Remote binding - gemini" "Remote binding - xAI" "Remote binding - groq")
|
||||
|
||||
select opt in "${options[@]}"
|
||||
do
|
||||
@ -183,6 +183,18 @@ do
|
||||
python zoos/bindings_zoo/mistral_ai/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - gemini")
|
||||
python zoos/bindings_zoo/gemini/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - xAI")
|
||||
python zoos/bindings_zoo/xAI/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - groq")
|
||||
python zoos/bindings_zoo/xAI/__init__.py
|
||||
break
|
||||
;;
|
||||
*) echo "Invalid option $REPLY";;
|
||||
esac
|
||||
done
|
||||
|
@ -19,7 +19,7 @@ echo " \:\ \ \:\ /:/ / \:\ \ \:\ \ /:/ / \:\ \:\__\ "
|
||||
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
||||
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
||||
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
||||
echo "V9.5"
|
||||
echo "V12"
|
||||
echo "-----------------"
|
||||
echo "By ParisNeo"
|
||||
echo "-----------------"
|
||||
@ -193,7 +193,7 @@ ln -s lollms-webui/scripts/macos/macos_run.sh macos_run.sh
|
||||
ln -s lollms-webui/scripts/macos/macos_conda_session.sh macos_conda_session.sh
|
||||
|
||||
echo "Select the default binding to be installed:"
|
||||
options=("None (install the binding later)" "Local binding - ollama" "Local binding - python_llama_cpp" "Local binding - bs_exllamav2" "Remote binding - open_router" "Remote binding - open_ai" "Remote binding - mistral_ai")
|
||||
options=("None (install the binding later)" "Local binding - ollama" "Local binding - python_llama_cpp" "Local binding - bs_exllamav2" "Remote binding - open_router" "Remote binding - open_ai" "Remote binding - mistral_ai" "Remote binding - gemini" "Remote binding - xAI" "Remote binding - groq")
|
||||
|
||||
select opt in "${options[@]}"
|
||||
do
|
||||
@ -203,27 +203,39 @@ do
|
||||
break
|
||||
;;
|
||||
"Local binding - ollama")
|
||||
python3 zoos/bindings_zoo/ollama/__init__.py
|
||||
python zoos/bindings_zoo/ollama/__init__.py
|
||||
break
|
||||
;;
|
||||
"Local binding - python_llama_cpp")
|
||||
python3 zoos/bindings_zoo/python_llama_cpp/__init__.py
|
||||
python zoos/bindings_zoo/python_llama_cpp/__init__.py
|
||||
break
|
||||
;;
|
||||
"Local binding - bs_exllamav2")
|
||||
python3 zoos/bindings_zoo/bs_exllamav2/__init__.py
|
||||
python zoos/bindings_zoo/bs_exllamav2/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - open_router")
|
||||
python3 zoos/bindings_zoo/open_router/__init__.py
|
||||
python zoos/bindings_zoo/open_router/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - open_ai")
|
||||
python3 zoos/bindings_zoo/open_ai/__init__.py
|
||||
python zoos/bindings_zoo/open_ai/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - mistral_ai")
|
||||
python3 zoos/bindings_zoo/mistral_ai/__init__.py
|
||||
python zoos/bindings_zoo/mistral_ai/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - gemini")
|
||||
python zoos/bindings_zoo/gemini/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - xAI")
|
||||
python zoos/bindings_zoo/xAI/__init__.py
|
||||
break
|
||||
;;
|
||||
"Remote binding - groq")
|
||||
python zoos/bindings_zoo/xAI/__init__.py
|
||||
break
|
||||
;;
|
||||
*) echo "Invalid option $REPLY";;
|
||||
|
@ -14,7 +14,7 @@ echo " \:\ \ \:\ /:/ / \:\ \ \:\ \ /:/ / \:\ \:\__\ "
|
||||
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
||||
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
||||
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
||||
echo V9.5
|
||||
echo V12
|
||||
echo -----------------
|
||||
echo By ParisNeo
|
||||
echo -----------------
|
||||
|
Loading…
Reference in New Issue
Block a user