Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clairefro/llm-in-a-box
https://github.com/clairefro/llm-in-a-box
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/clairefro/llm-in-a-box
- Owner: clairefro
- Created: 2024-07-17T14:43:18.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T14:43:54.000Z (6 months ago)
- Last Synced: 2024-12-15T23:34:38.968Z (about 1 month ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LLM-in-a-box
Host a local LLM accessible on any device on your local network, with 100% local models and Ollama
## Installation
TODO: Ollama setup
1. Clone the repo
```bash
git clone
cd my_flask_app
```2. Create a virtual environment (optional but recommended)
```bash
python3 -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
```3.Install dependencies
```bash
pip3 install -r requirements.txt
```4. Run
```bash
python app.py```
## Interface
TODO