diff --git a/404.html b/404.html index da0dca26..23981fdb 100644 --- a/404.html +++ b/404.html @@ -4,7 +4,7 @@
Instead of starting OpenRAG using Docker commands and manually editing values in the .env file, the TUI walks you through the setup. It prompts for variables where required, creates a .env file for you, and then starts OpenRAG.
Once OpenRAG is running, use the TUI to monitor your application, control your containers, and retrieve logs.
-If you prefer running Docker commands and manually editing .env files, see Install with Docker.
If you prefer running Podman or Docker containers and manually editing .env files, see Install OpenRAG Containers.
The .whl file is currently available as an internal download during public preview, and will be published to PyPI in a future release.
The OpenRAG wheel installs the Terminal User Interface (TUI) for configuring and running OpenRAG.
+To quickly install and start OpenRAG, run uvx openrag.
To first set up a project and then install OpenRAG, do the following:
Create a new project with a virtual environment using uv init.
Add the local OpenRAG wheel to your project's virtual environment.
-uv add PATH/TO/openrag-VERSION-py3-none-any.whl
Replace PATH/TO/ and VERSION with the path and version of your downloaded OpenRAG .whl file.
For example, if your .whl file is in the ~/Downloads directory, the command is uv add ~/Downloads/openrag-0.1.8-py3-none-any.whl.
Ensure all dependencies are installed and updated in your virtual environment.
uv sync
Start the OpenRAG TUI.
+Install and start the OpenRAG TUI.
+uvx openrag
To install a specific version of the Langflow package, add the required version to the command, such as uvx --from openrag==0.1.25 openrag.
If you downloaded the OpenRAG wheel to your local machine, follow these steps:
Add the wheel to your project's virtual environment.
+uv add PATH/TO/openrag-VERSION-py3-none-any.whl
Replace PATH/TO/ and VERSION with the path and version of your downloaded OpenRAG .whl file.
For example, if your .whl file is in the ~/Downloads directory:
uv add ~/Downloads/openrag-0.1.8-py3-none-any.whl
Run OpenRAG.
uv run openrag
Continue with Set up OpenRAG with the TUI.