{"id":27472932,"url":"https://github.com/pinsaraperera/intellihack_backend","last_synced_at":"2025-10-09T16:51:32.192Z","repository":{"id":247407270,"uuid":"816686421","full_name":"PinsaraPerera/intellihack_backend","owner":"PinsaraPerera","description":"This is the backend of viewMo AI cloud platform. AI base graph generation engine, Agent base simulations, Protected endpoints with JWT token authentication and many more features included.","archived":false,"fork":false,"pushed_at":"2024-07-08T13:12:03.000Z","size":132,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-07-08T16:23:03.475Z","etag":null,"topics":["ai-graphs","fastapi","file-upload","gcp","jwt-authentication","langchain","logging","redis-cache","text-su","vector-database"],"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/PinsaraPerera.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":"2024-06-18T08:04:25.000Z","updated_at":"2024-07-08T16:23:17.073Z","dependencies_parsed_at":"2024-07-08T16:23:10.305Z","dependency_job_id":"8dfa88a3-fe63-4a9c-a2fb-fa73cffc43ed","html_url":"https://github.com/PinsaraPerera/intellihack_backend","commit_stats":null,"previous_names":["pinsaraperera/intellihack_backend"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PinsaraPerera%2Fintellihack_backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PinsaraPerera%2Fintellihack_backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PinsaraPerera%2Fintellihack_backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PinsaraPerera%2Fintellihack_backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PinsaraPerera","download_url":"https://codeload.github.com/PinsaraPerera/intellihack_backend/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249193728,"owners_count":21228024,"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":["ai-graphs","fastapi","file-upload","gcp","jwt-authentication","langchain","logging","redis-cache","text-su","vector-database"],"created_at":"2025-04-16T03:55:26.095Z","updated_at":"2025-10-09T16:51:27.136Z","avatar_url":"https://github.com/PinsaraPerera.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![alt text](image.png)\n## Intellihack ViewMo backend\n\n## Table of Contents\n- [Introduction](#introduction)\n- [Features](#features)\n- [Installation](#installation)\n- [Configuration](#configuration)\n- [Running the Application](#running-the-application)\n- [API Documentation](#api-documentation)\n- [Project Structure](#project-structure)\n- [License](#license)\n\n## Introduction\nThis is a backend project built with FastAPI. The project provides several routing paths to handle different functionalities. FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints.\n\n## Features\n- Fast and asynchronous API endpoints.\n- Detailed API documentation with Swagger UI and Redoc.\n- Easy to extend and customize.\n- Uses Pydantic for data validation.\n\n## Installation\n\n### Prerequisites\n- Python 3.6+\n- `pip` (Python package installer)\n\n### Steps\n1. Clone the repository:\n    ```bash\n    git clone https://github.com/PinsaraPerera/intellihack_backend.git\n    cd your-repo-name\n    ```\n\n2. Create and activate a virtual environment:\n    ```bash\n    python -m venv venv\n    source venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\n    ```\n\n3. Install the dependencies:\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n## Configuration\nCreate a `.env` file in the root directory and add your environment variables. Example:\n\n```bash\nPROJECT_ID = \"\"\nREGION = \"\"\nINSTANCE_NAME = \"\"\nINSTANCE_CONNECTION_NAME = f\"{PROJECT_ID}:{REGION}:{INSTANCE_NAME}\"\nDB_USER = \"\"\nDB_PASS = \"\"\nDB_NAME = \"\"\nPRIVATE_IP = \nOPENAI_API_KEY = \"\"\nBUCKET_NAME = \"\"\n\n# redis configure\nREDIS_HOST = \"\"\nREDIS_PORT = \n\n# microservices url\n\nAGENT_SERVICE_URL = \"\"\n```\n\n## Running the Application\nTo run the application, execute the following command:\n```bash\nuvicorn app.main:app --host 0.0.0.0 --port 80 --reload\n```\n\nThis will start the server at http://127.0.0.1:80\n\nAPI Documentation\nFastAPI automatically generates interactive API documentation at the following URLs:\n\nSwagger UI: http://127.0.0.1:80/docs\nRedoc: http://127.0.0.1:80/redoc\n\n## Project Structure\n```bash\nintellihack_backend/\n├── .github/\n│ └── workflows/\n│ └── (workflow files)\n├── app/\n│ ├── api/\n│ │ ├── endpoints/\n│ │ │ ├── init.py\n│ │ │ ├── authentication.py\n│ │ │ ├── gcp.py\n│ │ │ ├── query.py\n│ │ │ ├── train.py\n│ │ │ └── users.py\n│ ├── core/\n│ ├── crud/\n│ ├── db/\n│ ├── models/\n│ ├── quizGeneratingAgent/\n│ ├── schemas/\n│ ├── utils/\n│ ├── init.py\n│ └── main.py\n├── .dockerignore\n├── .gitignore\n├── Dockerfile\n├── Dockerfile.redis\n├── LICENSE\n├── README.md\n├── dependencies.txt\n├── entrypoint.sh\n├── logging_config.py\n├── redis.conf\n├── requirements.txt\n└── template.py\n```\n\n## License\nThis project is licensed under the Apache License. See the LICENSE file for more details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpinsaraperera%2Fintellihack_backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpinsaraperera%2Fintellihack_backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpinsaraperera%2Fintellihack_backend/lists"}