ollama/app/README.md

22 lines
250 B
Markdown
Raw Normal View History

2023-06-27 12:35:51 -04:00
# Desktop
2023-07-01 13:45:55 -04:00
This app builds upon Ollama to provide a desktop experience for running models.
2023-06-27 12:35:51 -04:00
2023-07-01 13:45:55 -04:00
## Developing
2023-07-06 14:32:48 -04:00
First, build the `ollama` binary:
2023-06-27 13:51:20 -04:00
2023-06-27 12:35:51 -04:00
```
cd ..
go build .
2023-06-27 12:35:51 -04:00
```
2023-06-28 09:57:36 -04:00
Then run the desktop app with `npm start`:
2023-06-27 12:35:51 -04:00
```
cd app
2023-06-27 13:51:20 -04:00
npm install
npm start
2023-06-27 12:35:51 -04:00
```
2023-06-28 09:57:36 -04:00