https://github.com/spyna/spyna-gpt
I'm having fun playing a little with AI.
https://github.com/spyna/spyna-gpt
Last synced: about 1 year ago
JSON representation
I'm having fun playing a little with AI.
- Host: GitHub
- URL: https://github.com/spyna/spyna-gpt
- Owner: Spyna
- Created: 2024-05-01T09:28:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-05T14:06:55.000Z (about 2 years ago)
- Last Synced: 2024-05-05T15:25:08.472Z (about 2 years ago)
- Language: TypeScript
- Size: 207 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spina GPT
This project is the classic chat with an AI, which allows uploading pdfs, urls and text files, to train.
The front end is done with vite.js and the backend with nestjs and fastify.
It's not made in python, but in JavaScript.
## Run locally:
start the embedding database
```
docker compose up
```
see compose.yml
### front-end
```
cd frontend
yarn dev
```
### server
copy `.env` to `.env.template` and add this info:
```
OPENAI_API_KEY=
QDRANT_URL=http://localhost:6333
QDRANT_CLUSTER_NAME=whatever
```
```
yarn start:dev
```