Thinking mode: - Add native Ollama `think: true` API parameter support - Create ThinkingBlock component with collapsible UI and streaming indicator - Allow expanding/collapsing thinking blocks during streaming - Pass showThinking prop through component chain to hide when disabled - Auto-generate smart chat titles using LLM after first response File uploads: - Add FileUpload component supporting images, text files, and PDFs - Create FilePreview component for non-image attachments - Add file-processor utility for text extraction and PDF parsing - Text/PDF content injected as context for all models Model capabilities: - Add ModelCapabilityIcons component showing vision/tools/code badges - Detect model capabilities from name patterns in models store - Display capability icons in model selector dropdown 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "ollama-webui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-auto": "^4.0.0",
|
|
"@sveltejs/kit": "^2.16.0",
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
"@tailwindcss/typography": "^0.5.16",
|
|
"@types/node": "^22.10.0",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.49",
|
|
"svelte": "^5.16.0",
|
|
"svelte-check": "^4.1.0",
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "^5.7.0",
|
|
"vite": "^6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@skeletonlabs/skeleton": "^2.10.0",
|
|
"@skeletonlabs/tw-plugin": "^0.4.0",
|
|
"@sveltejs/adapter-node": "^5.4.0",
|
|
"@types/dompurify": "^3.0.5",
|
|
"dexie": "^4.0.10",
|
|
"dompurify": "^3.2.0",
|
|
"marked": "^15.0.0",
|
|
"pdfjs-dist": "^5.4.530",
|
|
"shiki": "^1.26.0"
|
|
}
|
|
}
|