You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a snapshot release of the final gradio PoC build.
This version was the first iteration of the application, and is no longer supported.
If you are looking for a replacement for a local-first/open-source solution similar, please see either tldw_chatbook: https://github.com/rmusser01/tldw_chatbook or the Web Front-end for tldw_server:
# Download this package via your choice, and then extract the folder to a location of your choosing, and then navigate to that folder via the terminal.cd tldw_server
python3 -m venv .venv
# Activate:# Linux/macOS:source .venv/bin/activate
# Windows:
.venv\Scripts\activate
3. Install Python Dependencies
pip install -r requirements.txt
4. Configure API Keys
cp config.txt.example config.txt
# Edit config.txt with your keys & settings
Alternatively, use environment variables (OPENAI_API_KEY, ANTHROPIC_API_KEY, etc.).
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
This is a snapshot release of the final gradio PoC build.
This version was the first iteration of the application, and is no longer supported.
If you are looking for a replacement for a local-first/open-source solution similar, please see either tldw_chatbook: https://github.com/rmusser01/tldw_chatbook or the Web Front-end for tldw_server:
Install instructions:
tldw_server – Installation Guide (Win/Mac/Linux)
Requirements
1. Install System Dependencies
Linux
macOS
Windows
Download [Faster-Whisper-XXL](https://github.com/Purfview/whisper-standalone-win/releases/download/Faster-Whisper-XXL/Faster-Whisper-XXL_r192.3.4_windows.7z)
Extract
cudnn_ops_infer64_8.dllandcudnn_cnn_infer64_8.dllinto thetldw_serverdirectory.Download/install ffmpeg from https://www.gyan.dev/ffmpeg/builds/ - Move the ffmpeg/ffmprobe binaries into the
./binfolder if you don't install them system-wide. This will let tldw use ffmpeg for transcription/file conversion.2. Download Software & Create Virtual Environment
3. Install Python Dependencies
4. Configure API Keys
cp config.txt.example config.txt # Edit config.txt with your keys & settingsAlternatively, use environment variables (
OPENAI_API_KEY,ANTHROPIC_API_KEY, etc.).5. Run the Server
Optional – Docker Install
CPU
docker build -f Helper_Scripts/Dockerfiles/tldw_cpu_Dockerfile -t tldw-cpu . docker run -p 8000:8000 tldw-cpuGPU
docker build -f Helper_Scripts/Dockerfiles/tldw_nvidia_Dockerfile -t tldw-gpu . docker run --gpus all -p 8000:8000 tldw-gpuThis discussion was created from the release PoC-Version-Final-Snapshot.
Beta Was this translation helpful? Give feedback.
All reactions