iroad is a trip planner using ollama
.
Setup ollama
locally:
docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama
docker exec -it ollama bash
From inside ollama, pull your favourite llm:
ollama pull granite3.1-dense
Build and test iroad
to plan your next trip:
./iroad plan --trip.destination London --trip.interests harrypotter,culture,history --trip.date "16 May" --trip.duration 3 --trip.budget 600
Enjoy your trip!
iroad
is a simple cli that takes some inputs and craft a prompt for the llm.
Check your generated prompt with the --dry-run
option.