hellocomputer/README.md
Guillem Borrell 98a713b3c7
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Ported to fireworks
2024-07-13 10:52:45 +02:00

31 lines
596 B
Markdown

# hellocomputer
[Hello, computer!](https://youtu.be/hShY6xZWVGE?si=pzJjmc492uLV63z-)
`hellocomputer` is a GenAI-powered web application that allows you to analyze spreadsheets
![gui](./docs/img/gui_v01.png)
## Quick install and run
If you have `uv` installed, just clone the repository and run:
```
uv pip install -r requirements.in
```
You'll need the following environment variables in a .env file:
* `GCS_ACCESS`
* `GCS_SECRET`
* `LLM_API_KEY`
* `LLM_BASE_URL`
* `GCS_BUCKETNAME`
And to get the application up and running...
```
uvicorn hellocomputer.main:app --host localhost
```