├── .env.example ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── css_custom_data.json └── settings.json ├── README.md ├── ecosystem.config.json ├── package.json ├── patches └── svelte-markdown+0.4.1.patch ├── postcss.config.js ├── src ├── app.css ├── app.d.ts ├── app.html ├── bleh.d.ts ├── lib │ ├── ai │ │ └── index.ts │ ├── components │ │ ├── CuteBall.svelte │ │ ├── MdLink.svelte │ │ ├── Settings.svelte │ │ └── TransitionalFunction.svelte │ ├── fncaller │ │ └── index.ts │ ├── monaco │ │ ├── index.ts │ │ └── theme.ts │ ├── settings │ │ └── index.ts │ └── transition │ │ └── index.ts └── routes │ ├── +layout.svelte │ ├── +page.svelte │ ├── anim │ └── +page.svelte │ ├── edit │ ├── +page.svelte │ └── [task] │ │ └── +page.svelte │ └── favicon │ └── +server.ts ├── static └── favicon.png ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/css_custom_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/.vscode/css_custom_data.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/README.md -------------------------------------------------------------------------------- /ecosystem.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/ecosystem.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/package.json -------------------------------------------------------------------------------- /patches/svelte-markdown+0.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/patches/svelte-markdown+0.4.1.patch -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/app.html -------------------------------------------------------------------------------- /src/bleh.d.ts: -------------------------------------------------------------------------------- 1 | declare module "monaco-themes"; 2 | -------------------------------------------------------------------------------- /src/lib/ai/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/ai/index.ts -------------------------------------------------------------------------------- /src/lib/components/CuteBall.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/components/CuteBall.svelte -------------------------------------------------------------------------------- /src/lib/components/MdLink.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/components/MdLink.svelte -------------------------------------------------------------------------------- /src/lib/components/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/components/Settings.svelte -------------------------------------------------------------------------------- /src/lib/components/TransitionalFunction.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/components/TransitionalFunction.svelte -------------------------------------------------------------------------------- /src/lib/fncaller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/fncaller/index.ts -------------------------------------------------------------------------------- /src/lib/monaco/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/monaco/index.ts -------------------------------------------------------------------------------- /src/lib/monaco/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/monaco/theme.ts -------------------------------------------------------------------------------- /src/lib/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/lib/settings/index.ts -------------------------------------------------------------------------------- /src/lib/transition/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/anim/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/routes/anim/+page.svelte -------------------------------------------------------------------------------- /src/routes/edit/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/routes/edit/+page.svelte -------------------------------------------------------------------------------- /src/routes/edit/[task]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/routes/edit/[task]/+page.svelte -------------------------------------------------------------------------------- /src/routes/favicon/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/src/routes/favicon/+server.ts -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-nullptr/ollama-functions/HEAD/vite.config.ts --------------------------------------------------------------------------------