├── .devcontainer ├── Containerfile └── devcontainer.json ├── .github └── FUNDING.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── data ├── dev.heppen.ollama.desktop └── icons │ ├── avatar.png │ └── scalable │ └── apps │ └── dev.heppen.ollama-symbolic.svg ├── i18n.toml ├── i18n ├── bg │ └── cosmic_ext_applet_ollama.ftl ├── cs │ └── cosmic_ext_applet_ollama.ftl ├── en │ └── cosmic_ext_applet_ollama.ftl ├── nl │ └── cosmic_ext_applet_ollama.ftl ├── pl │ └── cosmic_ext_applet_ollama.ftl ├── sv │ └── cosmic_ext_applet_ollama.ftl └── zh-CN │ └── cosmic_ext_applet_ollama.ftl ├── justfile ├── screenshots ├── chat.png └── settings.png └── src ├── api.rs ├── chat.rs ├── lib.rs ├── localize.rs ├── main.rs ├── models.rs ├── stream.rs └── window.rs /.devcontainer/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/.devcontainer/Containerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .idea/ -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/README.md -------------------------------------------------------------------------------- /data/dev.heppen.ollama.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/data/dev.heppen.ollama.desktop -------------------------------------------------------------------------------- /data/icons/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/data/icons/avatar.png -------------------------------------------------------------------------------- /data/icons/scalable/apps/dev.heppen.ollama-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/data/icons/scalable/apps/dev.heppen.ollama-symbolic.svg -------------------------------------------------------------------------------- /i18n.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/i18n.toml -------------------------------------------------------------------------------- /i18n/bg/cosmic_ext_applet_ollama.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/i18n/bg/cosmic_ext_applet_ollama.ftl -------------------------------------------------------------------------------- /i18n/cs/cosmic_ext_applet_ollama.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/i18n/cs/cosmic_ext_applet_ollama.ftl -------------------------------------------------------------------------------- /i18n/en/cosmic_ext_applet_ollama.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/i18n/en/cosmic_ext_applet_ollama.ftl -------------------------------------------------------------------------------- /i18n/nl/cosmic_ext_applet_ollama.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/i18n/nl/cosmic_ext_applet_ollama.ftl -------------------------------------------------------------------------------- /i18n/pl/cosmic_ext_applet_ollama.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/i18n/pl/cosmic_ext_applet_ollama.ftl -------------------------------------------------------------------------------- /i18n/sv/cosmic_ext_applet_ollama.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/i18n/sv/cosmic_ext_applet_ollama.ftl -------------------------------------------------------------------------------- /i18n/zh-CN/cosmic_ext_applet_ollama.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/i18n/zh-CN/cosmic_ext_applet_ollama.ftl -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/justfile -------------------------------------------------------------------------------- /screenshots/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/screenshots/chat.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/src/api.rs -------------------------------------------------------------------------------- /src/chat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/src/chat.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/src/localize.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/src/models.rs -------------------------------------------------------------------------------- /src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/src/stream.rs -------------------------------------------------------------------------------- /src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/cosmic-ext-applet-ollama/HEAD/src/window.rs --------------------------------------------------------------------------------