mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-06-01 23:30:43 +00:00
added installers
This commit is contained in:
parent
da47cb3644
commit
28433add5c
@ -14,7 +14,7 @@ echo " \:\ \ \:\ /:/ / \:\ \ \:\ \ /:/ / \:\ \:\__\ "
|
|||||||
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
||||||
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
||||||
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
||||||
echo "V9.5"
|
echo "V12"
|
||||||
echo "-----------------"
|
echo "-----------------"
|
||||||
echo "By ParisNeo"
|
echo "By ParisNeo"
|
||||||
echo "-----------------"
|
echo "-----------------"
|
||||||
@ -150,7 +150,7 @@ mkdir -p $INSTALL_ENV_DIR/bin
|
|||||||
|
|
||||||
|
|
||||||
echo "Select the default binding to be installed:"
|
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[@]}"
|
select opt in "${options[@]}"
|
||||||
do
|
do
|
||||||
@ -183,6 +183,18 @@ do
|
|||||||
python zoos/bindings_zoo/mistral_ai/__init__.py
|
python zoos/bindings_zoo/mistral_ai/__init__.py
|
||||||
break
|
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";;
|
*) echo "Invalid option $REPLY";;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
@ -19,7 +19,7 @@ echo " \:\ \ \:\ /:/ / \:\ \ \:\ \ /:/ / \:\ \:\__\ "
|
|||||||
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
||||||
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
||||||
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
||||||
echo "V9.5"
|
echo "V12"
|
||||||
echo "-----------------"
|
echo "-----------------"
|
||||||
echo "By ParisNeo"
|
echo "By ParisNeo"
|
||||||
echo "-----------------"
|
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
|
ln -s lollms-webui/scripts/macos/macos_conda_session.sh macos_conda_session.sh
|
||||||
|
|
||||||
echo "Select the default binding to be installed:"
|
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[@]}"
|
select opt in "${options[@]}"
|
||||||
do
|
do
|
||||||
@ -203,27 +203,39 @@ do
|
|||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"Local binding - ollama")
|
"Local binding - ollama")
|
||||||
python3 zoos/bindings_zoo/ollama/__init__.py
|
python zoos/bindings_zoo/ollama/__init__.py
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"Local binding - python_llama_cpp")
|
"Local binding - python_llama_cpp")
|
||||||
python3 zoos/bindings_zoo/python_llama_cpp/__init__.py
|
python zoos/bindings_zoo/python_llama_cpp/__init__.py
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"Local binding - bs_exllamav2")
|
"Local binding - bs_exllamav2")
|
||||||
python3 zoos/bindings_zoo/bs_exllamav2/__init__.py
|
python zoos/bindings_zoo/bs_exllamav2/__init__.py
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"Remote binding - open_router")
|
"Remote binding - open_router")
|
||||||
python3 zoos/bindings_zoo/open_router/__init__.py
|
python zoos/bindings_zoo/open_router/__init__.py
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"Remote binding - open_ai")
|
"Remote binding - open_ai")
|
||||||
python3 zoos/bindings_zoo/open_ai/__init__.py
|
python zoos/bindings_zoo/open_ai/__init__.py
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"Remote binding - mistral_ai")
|
"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
|
break
|
||||||
;;
|
;;
|
||||||
*) echo "Invalid option $REPLY";;
|
*) echo "Invalid option $REPLY";;
|
||||||
|
@ -14,7 +14,7 @@ echo " \:\ \ \:\ /:/ / \:\ \ \:\ \ /:/ / \:\ \:\__\ "
|
|||||||
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
echo " \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / "
|
||||||
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
echo " \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / "
|
||||||
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
echo " \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ "
|
||||||
echo V9.5
|
echo V12
|
||||||
echo -----------------
|
echo -----------------
|
||||||
echo By ParisNeo
|
echo By ParisNeo
|
||||||
echo -----------------
|
echo -----------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user