diff options
author | ben | 2023-03-04 22:22:22 +0100 |
---|---|---|
committer | ben | 2025-03-04 21:47:15 +0100 |
commit | 207592ff57938536eafa99f2632d670d2bb9457e (patch) | |
tree | 25e89078fad54f86d2691b21e8390b36e44e1aa5 /README.md | |
parent | f3eae794ace20d10edc4e970ce6258a47fb3b4d9 (diff) | |
download | ai_env-207592ff57938536eafa99f2632d670d2bb9457e.tar.gz ai_env-207592ff57938536eafa99f2632d670d2bb9457e.tar.bz2 ai_env-207592ff57938536eafa99f2632d670d2bb9457e.tar.xz |
Isolating containers from internet access to enhance security.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -46,7 +46,7 @@ Add an API key to secure server access by adding a `.env` file like this: LLM_API_KEY=1234567890 ``` -Create a user authentication for aichat web UI: +Create a user authentication for aichat Web UI: ``` htpasswd -c src/nginx/htpasswd user @@ -60,7 +60,7 @@ docker compose up --build -d Then wait for the models to finish downloading using the following command to display the status: ``` -docker-compose logs -f llm_provision +docker-compose logs -f ollama_provision ``` ## How to use @@ -120,3 +120,9 @@ Example: export TTS_API_HOST="https://your-remote-domain" ./tools/speech.sh ... ``` + +## Web UI + +A web application to interact with supported LLMs directly from your browser is available at [http://127.0.0.1:8000/playground](http://127.0.0.1:8000/playground). + +A web platform to compare different LLMs side-by-side is available at [http://127.0.0.1:8000/arena](http://127.0.0.1:8000/arena). |