https://github.com/cfryerdev/ai-wunstack
The open source stack for my personal Wun agent, using various LLMs
https://github.com/cfryerdev/ai-wunstack
Last synced: 4 days ago
JSON representation
The open source stack for my personal Wun agent, using various LLMs
- Host: GitHub
- URL: https://github.com/cfryerdev/ai-wunstack
- Owner: cfryerdev
- Created: 2024-01-02T02:00:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-05T21:53:48.000Z (over 2 years ago)
- Last Synced: 2024-03-06T19:49:56.577Z (over 2 years ago)
- Language: TypeScript
- Size: 496 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# AI Stack - Wun
This is a ai stack meant for educational purposes to teach the basics of AI LLM and RAG.
## Getting started
First we need to install our pre-reqs...
```bash
npm install -g pnpm
pnpm i
pnpm exec playwright install
```
Mext we need to create a `.env` file in the services directory with the following content:
```
OPENAI_API_KEY=PUT_YOUR_API_KEY_HERE
TRAIN_ON_START=true
```
We should now be ready to setup and start the application
```bash
pnpm i
pnpm start
```