This guide will walk you through the quickest way to get your Owl project up and running.
Before you start, make sure you have the following installed:
- FFmpeg
- Git
- Node.js 18+
- Ollama (Optional. Used for local LLMs)
- Poetry
- Python 3.11+
- Clone the Owl repository, install dependencies and activate your virtual environment:
git clone https://github.com/OwlAIProject/Owl.git
cd Owl
poetry install
poetry shell
- Install configuration files:
Run the owl setup
command and follow the prompts to create configuration files in the project's root directory.
owl setup
- Run server:
Start the server using the following command:
owl serve --web
You can now access your Owl server at http://localhost:3000
. Note, you'll need to proceed with the next steps below before you can use Owl's web interface.
To further configure your Owl project, see the Server Configuration guide.