You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update API Keys in `docker-compose.yml` then start the server:
171
+
172
+
```bash
173
+
docker-compose up -d
174
+
```
175
+
176
+
#### c) Build and run local Docker image from source:
177
+
178
+
```bash
179
+
git clone https://github.com/ServiceStack/llms
180
+
181
+
docker-compose -f docker-compose.local.yml up -d --build
182
+
```
183
+
184
+
After the container starts, you can access the UI and API at `http://localhost:8000`.
185
+
186
+
187
+
See [DOCKER.md](DOCKER.md) for detailed instructions on customizing configuration files.
188
+
187
189
## Configuration
188
190
189
191
The configuration file [llms.json](llms/llms.json) is saved to `~/.llms/llms.json` and defines available providers, models, and default settings. Key sections:
0 commit comments