├── .env.example ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── components.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public └── logo.png ├── src ├── app │ ├── api │ │ └── chat │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── atoms │ │ ├── DarkModeToggle.tsx │ │ ├── ExpandableTextarea.tsx │ │ ├── ExternalLink.tsx │ │ └── Tooltip.tsx │ ├── chat │ │ ├── Chat.tsx │ │ ├── ChatMessage.tsx │ │ └── SettingsPanel.tsx │ ├── providers │ │ └── theme-provider.tsx │ └── ui │ │ ├── button.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── slider.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts └── lib │ ├── types.ts │ ├── useAppStore.ts │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/components.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/public/logo.png -------------------------------------------------------------------------------- /src/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/app/api/chat/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/atoms/DarkModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/atoms/DarkModeToggle.tsx -------------------------------------------------------------------------------- /src/components/atoms/ExpandableTextarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/atoms/ExpandableTextarea.tsx -------------------------------------------------------------------------------- /src/components/atoms/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/atoms/ExternalLink.tsx -------------------------------------------------------------------------------- /src/components/atoms/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/atoms/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/chat/Chat.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/chat/ChatMessage.tsx -------------------------------------------------------------------------------- /src/components/chat/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/chat/SettingsPanel.tsx -------------------------------------------------------------------------------- /src/components/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/providers/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/useAppStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/lib/useAppStore.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holdenmatt/hello-llama/HEAD/tsconfig.json --------------------------------------------------------------------------------