{"id":23605756,"url":"https://github.com/datvodinh/finbot","last_synced_at":"2025-08-13T05:07:48.073Z","repository":{"id":269910291,"uuid":"895828020","full_name":"datvodinh/finbot","owner":"datvodinh","description":"Realtime RAG Chatbot Project for Finance.","archived":false,"fork":false,"pushed_at":"2025-05-08T00:57:18.000Z","size":1516,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T20:01:07.518Z","etag":null,"topics":["chatbot","llm","playwright","qdrant","rag","redis"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/datvodinh.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,"zenodo":null}},"created_at":"2024-11-29T01:55:01.000Z","updated_at":"2025-05-28T02:48:09.000Z","dependencies_parsed_at":"2024-12-27T05:23:03.267Z","dependency_job_id":"f1846732-b735-49c1-b08c-4f2d5738d55b","html_url":"https://github.com/datvodinh/finbot","commit_stats":null,"previous_names":["datvodinh/finbot"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/datvodinh/finbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datvodinh%2Ffinbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datvodinh%2Ffinbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datvodinh%2Ffinbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datvodinh%2Ffinbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/datvodinh","download_url":"https://codeload.github.com/datvodinh/finbot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datvodinh%2Ffinbot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270183606,"owners_count":24541341,"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-13T02:00:09.904Z","response_time":66,"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":["chatbot","llm","playwright","qdrant","rag","redis"],"created_at":"2024-12-27T13:12:51.994Z","updated_at":"2025-08-13T05:07:47.521Z","avatar_url":"https://github.com/datvodinh.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Realtime RAG Chatbot Project for Finance.\n\n![alt text](images/chat.png)\n\n## Table of Contents\n- [⭐ Key Features](#⭐-key-features)\n- [🚀 Getting Started](#🚀-getting-started)\n  - [☑️ Prerequisites](#☑️-prerequisites)\n  - [⚙️ Advanced Installation](#⚙️-advanced-installation)\n  - [🤖 Usage](#🤖-usage)\n- [📌 Project Roadmap](#📌-project-roadmap)\n- [🎗 License](#🎗-license)\n- [🙌 Contributors](#🙌-contributors)\n\n## ⭐ Key Features\n\n![alt text](images/flow.svg)\n\n---\n## 🚀 Getting Started\n\n### ☑️ Prerequisites\n\nBefore getting started with , ensure your runtime environment meets the following requirements:\n\n- **Programming Language:** Python\n- **Package Manager:** Pip, Poetry\n- **Container Runtime:** Docker\n\n### 🤖 Usage\nRun  using the following command:\n\n**Add environment variables to [docker-compose.yaml](./docker-compose.yaml)**  \u0026nbsp; [\u003cimg align=\"center\" src=\"https://img.shields.io/badge/Docker-2CA5E0.svg?style={badge_style}\u0026logo=docker\u0026logoColor=white\" /\u003e](https://www.docker.com/)\n\n```sh\nservices:\n  agent:\n    image: ghcr.io/datvodinh/finbot:main\n    container_name: finbot-agent\n    environment:\n      - REDIS_HOST=cache-db\n      - REDIS_PORT=6379\n      - QDRANT_URL=http://vector-db:6333\n      - OPENAI_API_KEY=\n      - GOOGLE_API_KEY=\n      - GOOGLE_CSE_ID=\n```\n\n\n**Using `docker`** \u0026nbsp; [\u003cimg align=\"center\" src=\"https://img.shields.io/badge/Docker-2CA5E0.svg?style={badge_style}\u0026logo=docker\u0026logoColor=white\" /\u003e](https://www.docker.com/)\n\n```sh\ndocker compose up -d --build\n```\n\n### ⚙️ Advanced Installation\n\nInstall  using one of the following methods:\n\n**Build from source:**\n\n1. Clone the  repository:\n```sh\ngit clone https://github.com/datvodinh/finbot.git\n```\n\n2. Navigate to the project directory:\n```sh\ncd \n```\n\n3. Install the project dependencies:\n\n**Using `poetry`** \u0026nbsp; [\u003cimg align=\"center\" src=\"https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json\" /\u003e](https://python-poetry.org/)\n\n```sh\npoetry install\n```\n\n**Add environment variables to [.env](./apps/agent/)**\n\n```sh\nREDIS_HOST=0.0.0.0\nREDIS_PORT=6379\nQDRANT_URL=http://0.0.0.0:6333\nOPENAI_API_KEY=\nGOOGLE_API_KEY=\nGOOGLE_CSE_ID=\n```\n\n**Run using `pip`** \u0026nbsp; [\u003cimg align=\"center\" src=\"https://img.shields.io/badge/Pip-3776AB.svg?style={badge_style}\u0026logo=pypi\u0026logoColor=white\" /\u003e](https://pypi.org/project/pip/)\n\n```sh\npython src/main.py\n```\n\n---\n\n## 📌 Project Roadmap\n\n- [ ] **`Task 1`**: More Robust Crawling.\n- [ ] **`Task 2`**: Support Model from Ollama and Huggingface.\n\n---\n\n## 🎗 License\n\nThis project is protected under the [Apache 2 LICENSE](https://choosealicense.com/licenses/apache-2.0/).\n\n---\n\n## 🙌 Contributors\n\n- Shout out to [datvodinh](https://github.com/datvodinh) and [2uanDM](https://github.com/2uanDM) who helped bring this project to life!\n\n---","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatvodinh%2Ffinbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdatvodinh%2Ffinbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatvodinh%2Ffinbot/lists"}