This is a Nuxt 3 + Ollama web application. It's an example of Ollama Javascript library.
Feature list:
- Models management (list, download, delete)
- Chat with models
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
You will need an Ollama server running. You can run it in local environment following the installation guide of Ollama.
By default, Ollama server is running on http://localhost:11434.
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev