ollama/macapp/README.md

22 lines
253 B
Markdown
Raw Normal View History

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