Lets have a conversation with our GIT history.
Install pnpm:
corepack enable
corepack prepare [email protected] --activate
Compile & start commands:
pnpm run build
pnpm run start
Qdrant - vector database:
docker compose up
docker compose down
rm -fr ./qdrant_data
ollama run llama3.2
ollama ps
DEBUG=app:* pnpm run import --repositoryPath ../platform/
curl -X POST http://localhost:3000/query \
-H "Content-Type: application/json" \
-d '{"prompt": "Who made the most commits after 5h pm BST?"}' \
| jq -r '.content'
curl -X POST http://localhost:3000/query \
-H "Content-Type: application/json" \
-d '{"prompt": "Provide a summary of most popular changes."}' \
| jq -r '.content'
curl -X POST http://localhost:3000/query \
-H "Content-Type: application/json" \
-d '{"prompt": "Give me the latest commit from every author."}' \
| jq -r '.content'