{"id":23881420,"url":"https://github.com/cspyridakis/modelfiles","last_synced_at":"2026-05-16T01:34:35.064Z","repository":{"id":270829429,"uuid":"904803187","full_name":"CSpyridakis/modelfiles","owner":"CSpyridakis","description":"A personal collection of Modelfiles","archived":false,"fork":false,"pushed_at":"2025-04-30T22:10:24.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-17T11:43:35.077Z","etag":null,"topics":["gen-ai","llms","ollama","openwebui","vs-code"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CSpyridakis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-17T15:26:56.000Z","updated_at":"2025-04-30T22:08:46.000Z","dependencies_parsed_at":"2025-01-03T12:22:52.910Z","dependency_job_id":"cfcceb19-5367-4fcd-aa92-7ff4c7b71e5f","html_url":"https://github.com/CSpyridakis/modelfiles","commit_stats":null,"previous_names":["cspyridakis/modelfiles"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/CSpyridakis/modelfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fmodelfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fmodelfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fmodelfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fmodelfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CSpyridakis","download_url":"https://codeload.github.com/CSpyridakis/modelfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CSpyridakis%2Fmodelfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271159335,"owners_count":24709246,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gen-ai","llms","ollama","openwebui","vs-code"],"created_at":"2025-01-04T01:45:41.708Z","updated_at":"2026-05-16T01:34:35.019Z","avatar_url":"https://github.com/CSpyridakis.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Modelfiles\n\nThis repository contains a personal collection of model files that have been used during my LLM experimentation. \n\n## Ollama\nFor my use case, I create and use the models using [Ollama](https://ollama.com/).\nTo have access via different tools in the `Ollama` server, open `Ollama` configuration:\n```bash\nsudo vim /etc/systemd/system/ollama.service\n```\nThen, add the following line:\n```\nEnvironment=\"OLLAMA_HOST=0.0.0.0:11434\"\n```\n\nThen restart `Ollama`\n```bash\nsudo systemctl daemon-reload\nsudo systemctl restart ollama\n```\nMake sure that your firewall accepts requests there\n```bash\n# E.g. for Ubuntu/Debian based Distributions\nsudo ufw allow 11434\n```\n\n## Open WebUI\n[Open WebUI](https://openwebui.com/) is also used to provide a graphical interface for interacting with the models. \n\n### Installation using Docker - CPU utilization\n```bash\ndocker run -d \\\n\t-p 3000:8080 \\\n\t--add-host=host.docker.internal:host-gateway \\\n\t-v open-webui:/app/backend/data \\\n\t--restart always \\\n\tghcr.io/open-webui/open-webui:main\n```\n\n### Installation using Docker - (NVIDIA) GPU utilization\n\u003e [!WARNING]\n\u003e In order to work:\n\u003e 1. Configure the repository:\n\u003e ```\n\u003e curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey |sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \\\n\u003e \u0026\u0026 curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list | sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list \\\n\u003e \u0026\u0026 sudo apt-get update\n\u003e ```\n\u003e \n\u003e 2. Install the NVIDIA Container Toolkit packages:\n\u003e ```\n\u003e sudo apt-get install -y nvidia-container-toolkit\n\u003e ```\n\u003e 3. Configure the container runtime by using the nvidia-ctk command:\n\u003e ```\n\u003e sudo nvidia-ctk runtime configure --runtime=docker\n\u003e ```\n\u003e 4. Restart the Docker daemon:\n\u003e ```\n\u003e sudo systemctl restart docker\n\u003e ```\n\nNow we are ready to start the container\n```\ndocker run -d \\\n\t-p 3001:8080 \\\n\t--gpus all \\\n\t--add-host=host.docker.internal:host-gateway \\\n\t-v open-webui:/app/backend/data \\\n \t--restart always \\\n\tghcr.io/open-webui/open-webui:cuda\n```\n\n## `Continue` a VS-Code extension\nFinally, since VS-Code is one of my go-to editors for development, I also use [Continue](https://docs.continue.dev/getting-started/overview/) VS-Code extension to interact with the models from there.\n\n## Goal\nThis setup can ensure the deployment of LLMs locally on proprietary servers, which may be a mandatory security constraint for some applications or development of tools.\n\n\u003e [!NOTE]\n\u003e TODO: Create an index for future expansion\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcspyridakis%2Fmodelfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcspyridakis%2Fmodelfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcspyridakis%2Fmodelfiles/lists"}