mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-09-01 18:09:08 +00:00
* requirements.txt file * windows installs from requirements.txt because of silly permission issues * relock * narrator - narrate on dialogue agent actions * add support for new textgenwebui api * world state auto regen trigger off of gameloop * funciton !rename command * ensure_dialog_format error handling * Cat, Nous-Capybara, dolphin-2.2.1 * narrate after dialog rerun fixes, template fixes * LMStudio client (experimental) * dolhpin yi * refactor client base * cruft * openai client to new base * more client refactor fixes * tweak context retrieval prompts * adjust nous capybara template * add Tess-Medium * 0.13.0 * switch back to poetry for windows as well * error on legacy textgenwebui api * runpod text gen api url fixed * fix windows install script * add fllow instruction template * Psyfighter2
26 lines
589 B
Batchfile
26 lines
589 B
Batchfile
@echo off
|
|
|
|
REM create a virtual environment
|
|
python -m venv talemate_env
|
|
|
|
REM activate the virtual environment
|
|
call talemate_env\Scripts\activate
|
|
|
|
REM install poetry
|
|
python -m pip install "poetry==1.7.1" "rapidfuzz>=3" -U
|
|
|
|
REM use poetry to install dependencies
|
|
python -m poetry install
|
|
|
|
REM copy config.example.yaml to config.yaml only if config.yaml doesn't exist
|
|
IF NOT EXIST config.yaml copy config.example.yaml config.yaml
|
|
|
|
REM navigate to the frontend directory
|
|
cd talemate_frontend
|
|
npm install
|
|
|
|
REM return to the root directory
|
|
cd ..
|
|
|
|
echo Installation completed successfully.
|
|
pause
|