{"id":24144507,"url":"https://github.com/skhelladi/ollama-gui-web-access","last_synced_at":"2026-02-05T20:03:34.098Z","repository":{"id":272033499,"uuid":"915327256","full_name":"skhelladi/ollama-gui-web-access","owner":"skhelladi","description":"Ollama GUI with Web Access is a graphical user interface that connects to a local instance of Ollama and allows the selected Ollama model to browse/search the internet.","archived":false,"fork":false,"pushed_at":"2025-01-11T15:36:33.000Z","size":89,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-04T05:41:55.029Z","etag":null,"topics":["llm","ollama","ollama-gui"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/skhelladi.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}},"created_at":"2025-01-11T15:06:54.000Z","updated_at":"2025-01-11T15:36:36.000Z","dependencies_parsed_at":"2025-01-11T16:30:52.006Z","dependency_job_id":"762b348b-116b-4aa8-a0dd-6560cf145ef2","html_url":"https://github.com/skhelladi/ollama-gui-web-access","commit_stats":null,"previous_names":["skhelladi/ollama-gui-web-access"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/skhelladi/ollama-gui-web-access","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skhelladi%2Follama-gui-web-access","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skhelladi%2Follama-gui-web-access/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skhelladi%2Follama-gui-web-access/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skhelladi%2Follama-gui-web-access/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skhelladi","download_url":"https://codeload.github.com/skhelladi/ollama-gui-web-access/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skhelladi%2Follama-gui-web-access/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29132541,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T19:36:52.185Z","status":"ssl_error","status_checked_at":"2026-02-05T19:35:40.941Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["llm","ollama","ollama-gui"],"created_at":"2025-01-12T06:11:39.965Z","updated_at":"2026-02-05T20:03:34.067Z","avatar_url":"https://github.com/skhelladi.png","language":"JavaScript","readme":"# Ollama GUI with Web Access\n\n*Ollama GUI with Web Access* is a graphical user interface that connects to a local instance of Ollama and allows the selected Ollama model to browse/search the internet. Users can select from the available Ollama models, change the base URL, enter prompts, enable/disable search, etc. The search is provided via DuckDuckGo.\n\nThis code is forked from [ollama-search-gui](https://github.com/GPT-Engineer-App/ollama-search-gui.git).\n\n## Features\n\n- Select available Ollama models\n- Enter prompts\n- Enable/disable web search\n- Display web search results\n- Display AI-generated responses in real-time\n- Modern theme with dark/light mode support\n\n## Tech Stack\n\nThis project is built with React and Chakra UI.\n\n- Vite\n- React\n- Chakra UI\n- Ollama\n- Express\n\n## Installation\n\nClone the repository and install dependencies:\n\n```sh\ngit clone https://github.com/skhelladi/ollama-gui-web-access.git\ncd ollama-search-gui\nnpm install\n```\n\n## Usage\n\nTo start the development server with auto-reloading and instant preview:\n\n```sh\nnpm run dev\n```\n\nTo build the application for production:\n\n```sh\nnpm run build\n```\n\nTo start the server in production mode:\n\n```sh\nnpm start\n```\n\n## Configuration\n\nThe project uses a `settings.json` file for configuration. Ensure this file is present in the root directory of the project.\n\n## API Endpoints\n\n### Ollama Models\n\n- `GET /api/models` : Retrieves the list of available Ollama models.\n\n### Generate Responses\n\n- `POST /api/generate` : Generates a response based on the provided model and prompt.\n\n### History\n\n- `GET /history` : Retrieves the history of questions.\n- `POST /history` : Adds a question to the history.\n- `DELETE /history/:id` : Deletes a question from the history.\n- `PUT /history/:id` : Updates the title of a question.\n\n### Discussions\n\n- `GET /discussion/:questionId` : Retrieves the discussion for a given question.\n- `POST /discussion` : Adds a message to a discussion.\n\n### Settings\n\n- `POST /save-settings` : Saves settings to a JSON file.\n\n### Public IP Address\n\n- `GET /get-public-ip` : Retrieves the server's public IP address.\n\n## Requirements\n\n- Node.js \u0026 npm - [install with nvm](https://github.com/nvm-sh/nvm#installing-and-updating)\n\n## License\n\nThis project is licensed under the GPL-3.0 License.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskhelladi%2Follama-gui-web-access","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskhelladi%2Follama-gui-web-access","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskhelladi%2Follama-gui-web-access/lists"}