This commit is contained in:
Saifeddine ALOUI 2023-10-16 23:20:50 +02:00
parent 2eadc7df2d
commit b6c2137974
2 changed files with 1 additions and 29 deletions

View File

@ -680,7 +680,7 @@ class LoLLMsAPPI(LollmsApplication):
if not self.model:
self.notify("No model selected. Please make sure you select a model before starting generation", False, client_id)
return
self.new_message(client_id, self.personality.name, "✍ warming up ...")
self.new_message(client_id, self.personality.name, "<edit this to put your ai answer start>")
self.socketio.sleep(0.01)
# A copy of the original lollms-server generation code needed for playground

View File

@ -197,33 +197,5 @@ IF EXIST "installer_files\lollms_env\bin" (
)
pause
setlocal
rem Ask the user if they want to install Visual Studio Build Tools
set /p "installChoice=Do you want to install Visual Studio Build Tools? It is needed by the exllama binding. If you already have it or don't plan on using exllama, you can just say N. (Y/N): "
if /i "%installChoice%"=="Y" (
goto :install
) else (
echo Installation cancelled.
pause
exit
)
:install
rem Set variables for the installer URL and output file
set "installerUrl=https://aka.ms/vs/17/release/vs_BuildTools.exe"
set "outputFile=vs_buildtools.exe"
rem Download the installer using curl (make sure you have curl installed)
curl -o "%outputFile%" "%installerUrl%"
rem Install Visual Studio Build Tools
"%outputFile%" --quiet --norestart --add Microsoft.VisualStudio.Workload.NativeDesktop --includeRecommended
rem Clean up the downloaded installer
del "%outputFile%"
echo Installation complete.
pause