{"id":16144611,"url":"https://github.com/reenphygeorge/vprompt","last_synced_at":"2025-03-18T17:31:55.836Z","repository":{"id":212087815,"uuid":"730229960","full_name":"reenphygeorge/vPrompt","owner":"reenphygeorge","description":"AI based prompt searching tool for video footages","archived":false,"fork":false,"pushed_at":"2024-05-11T17:46:43.000Z","size":3659,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-28T11:23:26.224Z","etag":null,"topics":["llm","postgresql","prompt-tuning","python3","tauri","yolov8"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/reenphygeorge.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":"2023-12-11T13:32:22.000Z","updated_at":"2024-08-13T01:55:56.000Z","dependencies_parsed_at":"2024-02-24T21:23:08.798Z","dependency_job_id":"1825158e-024c-461c-8321-1997f2b9a107","html_url":"https://github.com/reenphygeorge/vPrompt","commit_stats":null,"previous_names":["reenphygeorge/vprompt"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reenphygeorge%2FvPrompt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reenphygeorge%2FvPrompt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reenphygeorge%2FvPrompt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reenphygeorge%2FvPrompt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reenphygeorge","download_url":"https://codeload.github.com/reenphygeorge/vPrompt/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243944772,"owners_count":20372859,"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","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","postgresql","prompt-tuning","python3","tauri","yolov8"],"created_at":"2024-10-10T00:13:42.315Z","updated_at":"2025-03-18T17:31:55.105Z","avatar_url":"https://github.com/reenphygeorge.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cp\u003e\n    \u003cimg src=\"https://res.cloudinary.com/rxg/image/upload/v1715448682/vprompt/Screenshot_from_2024-05-11_22-59-13_vxzc1l.png\" width=\"400\" height=\"300\"/\u003e\n  \u003c/p\u003e\n  \u003cb\u003eAI based prompt searching tool for video footages\u003c/b\u003e\n\u003c/div\u003e\n\n\n### Prerequisites and Setup\n---\n\nBefore starting with the setup process, ensure that you have the following prerequisites installed on your system:\n\n1. **[Git](https://git-scm.com/)**\n2. **[Python](https://www.python.org/)**\n3. **[PIP](https://pypi.org/project/pip/)**\n4. **[Docker](https://www.docker.com/) \u0026 [Docker Compose](https://docs.docker.com/compose/)**\n5. **venv ([Python Virtual Environments](https://docs.python.org/3/tutorial/venv.html#introduction))**\n6. **[Node.js](https://nodejs.org/en)**\n7. **[pnpm](https://pnpm.io/)**\n8. **[Rust](https://www.rust-lang.org/) (for [Tauri](https://tauri.app/v1/guides/getting-started/prerequisites))**\n\n#### Installation Steps:\n\n1. **Create Parent Folder:**\n   Create a parent folder where all the project files will be stored.\n\n2. **Clone vPrompt Repository:**\n   Clone the vPrompt repository from GitHub into the parent folder using the following command:\n   ```\n   git clone https://github.com/reenphygeorge/vPrompt.git\n   ```\n\n\n3. **Setup Python Virtual Environment:**\n   - Install the venv module (Python Virtual Environment) into the parent folder:\n     ```\n     python -m venv env\n     ```\n   - Activate the virtual environment:\n     - For Linux/Mac:\n       ```\n       source env/bin/activate\n       ```\n     - For Windows:\n       ```\n       .\\env\\Scripts\\activate\n       ```\n\n4. **Navigate to API Folder:**\n   - Open your terminal or command prompt.\n   - Use the `cd` command to navigate into the API folder within the cloned repository:\n     ```\n     cd vPrompt/api\n     ```\n\n\n5. **Install Python Requirements:**\n   - Ensure that the virtual environment is active.\n   - Install the required Python packages and dependencies listed in `requirements.txt`:\n     ```\n     pip install -r requirements.txt\n     ```\n\n6. **Start Docker Containers:**\n   - Ensure Docker and Docker Compose are installed and running.\n   - Navigate back to the parent folder.\n   - Start the Docker containers using Docker Compose:\n     ```\n     docker compose up\n     ```\n   - This command will start the PostgreSQL database, Redis, and the admin panel NocoDB.\n\n7. **Setup Database Structure:**\n   - Once the Docker containers are running, open a new terminal window/tab.\n   - Navigate back to the `api` directory within the cloned repository.\n   - Run the following command to setup the database structure:\n     ```\n     prisma migrate dev --schema=prisma/schema.prisma\n     ```\n\n8. **Start API Server:**\n   - Now that the Docker containers and database structure are set up, start the API server:\n     ```\n     uvicorn main:app --reload\n     ```\n\n9. **Navigate to UI Folder:**\n   - Open a new terminal window/tab.\n   - Navigate to the `ui` folder within the vPrompt directory using the following command:\n     ```\n     cd ../ui\n     ```\n\n10. **Install UI Dependencies:**\n    - Install the required UI dependencies using `pnpm`:\n      ```\n      pnpm install\n      ```\n\n11. **Start UI:**\n    - Once the dependencies are installed, start the UI using the following command:\n      ```\n      pnpm tauri dev\n      ```\n    - This command will launch the desktop application.\n\n### Start Using vPrompt\n\nWith the API server and UI running, you can now start using vPrompt for your video analysis needs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freenphygeorge%2Fvprompt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freenphygeorge%2Fvprompt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freenphygeorge%2Fvprompt/lists"}