{"id":24911247,"url":"https://github.com/mohd-faizy/deepchat","last_synced_at":"2026-04-18T00:01:53.938Z","repository":{"id":275055311,"uuid":"924926968","full_name":"mohd-faizy/DeepChat","owner":"mohd-faizy","description":"A Streamlit-powered Chat Assistant utilizing Ollama's DeepSeek-R1 (1.5B) model for intelligent, context-aware conversations. Designed with an interactive chat interface, adjustable model parameters. It leverages Ollama for local model serving and Streamlit for a responsive UI  for text-based interactions.","archived":false,"fork":false,"pushed_at":"2025-01-30T23:08:41.000Z","size":142,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T02:51:44.974Z","etag":null,"topics":["deepseek","deepseek-chat","deepseek-r1","llm","ollama","python","streamlit"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mohd-faizy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-30T22:16:09.000Z","updated_at":"2025-02-19T17:54:51.000Z","dependencies_parsed_at":"2025-01-30T23:35:36.917Z","dependency_job_id":null,"html_url":"https://github.com/mohd-faizy/DeepChat","commit_stats":null,"previous_names":["mohd-faizy/deepchat"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mohd-faizy/DeepChat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohd-faizy%2FDeepChat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohd-faizy%2FDeepChat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohd-faizy%2FDeepChat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohd-faizy%2FDeepChat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mohd-faizy","download_url":"https://codeload.github.com/mohd-faizy/DeepChat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohd-faizy%2FDeepChat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31950891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"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":["deepseek","deepseek-chat","deepseek-r1","llm","ollama","python","streamlit"],"created_at":"2025-02-02T04:18:51.883Z","updated_at":"2026-04-18T00:01:53.886Z","avatar_url":"https://github.com/mohd-faizy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🤖 DeepChat\n\n[![author](https://img.shields.io/badge/author-mohd--faizy-red)](https://github.com/mohd-faizy)\n[![Streamlit](https://img.shields.io/badge/Streamlit-FF4B4B?logo=streamlit\u0026logoColor=white)](https://streamlit.io)\n[![Ollama](https://img.shields.io/badge/Ollama-0C0D0E?logo=ollama\u0026logoColor=white)](https://ollama.ai)\n[![Python 3.9+](https://img.shields.io/badge/Python-3.9%2B-3776AB?logo=python\u0026logoColor=white)](https://python.org)\n\nDeepChat is an AI-powered chatbot leveraging `DeepSeek-R1` (1.5B) parameters, built with `Streamlit` and `Ollama` for seamless and interactive conversations.\n\n![Demo](https://github.com/mohd-faizy/DeepChat/blob/main/assets/deepChat.png?raw=true)\n\n## Directory Structure\n\n```\ndeepchat/\n├── app/\n│   ├── __init__.py\n│   ├── main.py          # Streamlit application\n│   └── utils.py         # Helper functions\n├── assets              \n├── requirements.txt     # Python dependencies\n├── .gitignore\n├── README.md            \n```\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- Python 3.9+\n- [Ollama](https://ollama.ai/) installed and running\n- DeepSeek-R1 model:\n\n  ```bash\n  ollama pull deepseek-r1:1.5b\n  ```\n\n### Installation\n\n1. Clone repository:\n\n   ```bash\n   git clone https://github.com/mohd-faizy/DeepChat.git\n   ```\n\n2. Create virtual environment:\n\n   ```bash\n   python -m venv venv\n   ```\n\n3. Activate environment:\n\n   ```bash\n   # Linux/macOS\n   source venv/bin/activate\n   \n   # Windows\n   .\\venv\\Scripts\\activate\n   ```\n\n4. Install dependencies:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n### 🖥️ Usage\n\n1. Start Ollama service:\n\n   ```bash\n   ollama serve\n   ```\n\n2. In a separate terminal, launch the chat interface:\n\n   ```bash\n   streamlit run app/main.py\n   ```\n\n\n## 🔧 Troubleshooting\n\n**Port Conflict (11434):**\n\n```bash\n# Windows\nnetstat -ano | findstr :11434\ntaskkill /PID \u003cPID\u003e /F\n\n# Linux/macOS\nlsof -i :11434\nkill -9 \u003cPID\u003e\n```\n\n**Common Issues:**\n\n- Ensure Ollama is running before launching the Streamlit app\n- Verify model installation: `ollama list`\n- Check firewall settings if experiencing connection issues\n\n\n## 🍰 Contributing\n\nContributions are welcome!\n\n## ⚖ ➤ License\n\nThis project is licensed under the MIT License. See [LICENSE](LICENSE) for details.\n\n## ❤️ Support\n\nIf you find this repository helpful, show your support by starring it! For questions or feedback, reach out on [Twitter(`X`)](https://twitter.com/F4izy).\n\n## 🔗Connect with me\n\n➤ If you have questions or feedback, feel free to reach out!!!\n\n[\u003cimg align=\"left\" src=\"https://cdn4.iconfinder.com/data/icons/social-media-icons-the-circle-set/48/twitter_circle-512.png\" width=\"32px\"/\u003e][twitter]\n[\u003cimg align=\"left\" src=\"https://cdn-icons-png.flaticon.com/512/145/145807.png\" width=\"32px\"/\u003e][linkedin]\n[\u003cimg align=\"left\" src=\"https://cdn-icons-png.flaticon.com/512/2626/2626299.png\" width=\"32px\"/\u003e][Portfolio]\n\n[twitter]: https://twitter.com/F4izy\n[linkedin]: https://www.linkedin.com/in/mohd-faizy/\n[Portfolio]: https://ai.stackexchange.com/users/36737/faizy?tab=profile\n\n---\n\n\u003cimg src=\"https://github-readme-stats.vercel.app/api?username=mohd-faizy\u0026show_icons=true\" width=380px height=200px /\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohd-faizy%2Fdeepchat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohd-faizy%2Fdeepchat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohd-faizy%2Fdeepchat/lists"}