Skip to content

jitsi/skynet

Folders and files

NameName
Last commit message
Last commit date
Feb 28, 2025
Jan 28, 2025
Feb 24, 2025
Feb 24, 2025
Mar 4, 2025
Dec 12, 2024
Feb 14, 2024
Feb 14, 2024
Feb 20, 2025
Oct 8, 2024
Feb 24, 2025
Jan 18, 2024
Feb 28, 2025
Feb 24, 2025
Jun 20, 2024
Jun 13, 2024
Dec 12, 2024
Feb 28, 2025
Mar 3, 2025
Mar 3, 2025
Mar 3, 2025
Feb 17, 2025
Feb 25, 2025
Feb 7, 2025

Repository files navigation

Skynet

Skynet is an API server for AI services wrapping several apps and models.

It is comprised of specialized modules which can be enabled or disabled as needed.

  • Summary and Action Items with vllm (or Ollama)
  • Live Transcriptions with Faster Whisper via websockets
  • RAG Assistant
  • 🚧 More to follow

Requirements

  • Poetry
  • Redis

Summaries / Assistant Quickstart

# disable authorization
export BYPASS_AUTHORIZATION=1

# start Redis
docker run -d --rm -p 6379:6379 redis

# If using vLLM (running on NVIDIA GPU)
export LLAMA_PATH="$HOME/models/Llama-3.1-8B-Instruct"
poetry install --with vllm

# If using Ollama
export LLAMA_PATH="llama.3.1"
poetry install

./run.sh

Visit http://127.0.0.1:8000

Live Transcriptions Quickstart

Note: Make sure to have ffmpeg < 7 installed and to update the DYLD_LIBRARY_PATH with the path to the ffmpeg libraries, e.g. export DYLD_LIBRARY_PATH=/Users/MyUser/ffmpeg/6.1.2/lib:$DYLD_LIBRARY_PATH.

mkdir -p "$HOME/models/streaming-whisper"
export WHISPER_MODEL_NAME="tiny.en"
export BYPASS_AUTHORIZATION="true"
export ENABLED_MODULES="streaming_whisper"
export WHISPER_MODEL_PATH="$HOME/models/streaming-whisper"

poetry install
./run.sh

Testing docker changes

docker compose -f compose-dev.yaml up --build
docker cp $HOME/models/Llama-3.1-8B-Instruct-Q8_0.gguf skynet-web-1:/models
docker restart skynet-web-1

# localhost:8000 for Skynet APIs
# localhost:8001/metrics for Prometheus metrics

Test it from Github Pages

Go to Streaming Whisper Demo to test your deployment from a browser

OR

Run the demo yourself

Go to demos/streaming-whisper/ and start a Python http server.

python3 -m http.server 8080

Open http://127.0.0.1:8080.

Documentation

Detailed documentation on how to configure, run, build and monitor Skynet and can be found in the docs.

Development

If you want to contribute, make sure to install the pre-commit hook for linting.

poetry run githooks setup

License

Skynet is distributed under the Apache 2.0 License.