{"id":28533330,"url":"https://github.com/kali414/salesduo_assignemnt","last_synced_at":"2026-04-11T04:31:36.401Z","repository":{"id":296544036,"uuid":"993724918","full_name":"Kali414/SalesDuo_Assignemnt","owner":"Kali414","description":" AI-powered Meeting Summarizer API built with Python (Flask) and Node.js (Express), using Gemini 1.5 Flash to generate summaries, decisions, and action items from meeting transcripts.","archived":false,"fork":false,"pushed_at":"2025-06-01T02:26:21.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-22T08:23:13.733Z","etag":null,"topics":["express","flask","nodejs","python"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Kali414.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":"2025-05-31T11:40:35.000Z","updated_at":"2025-06-01T02:26:24.000Z","dependencies_parsed_at":"2025-06-07T22:18:36.410Z","dependency_job_id":null,"html_url":"https://github.com/Kali414/SalesDuo_Assignemnt","commit_stats":null,"previous_names":["kali414/salesduo_assignemnt"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Kali414/SalesDuo_Assignemnt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kali414%2FSalesDuo_Assignemnt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kali414%2FSalesDuo_Assignemnt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kali414%2FSalesDuo_Assignemnt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kali414%2FSalesDuo_Assignemnt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kali414","download_url":"https://codeload.github.com/Kali414/SalesDuo_Assignemnt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kali414%2FSalesDuo_Assignemnt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002359,"owners_count":26083357,"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-10-09T02:00:07.460Z","response_time":59,"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":["express","flask","nodejs","python"],"created_at":"2025-06-09T17:06:39.336Z","updated_at":"2025-10-10T00:33:53.474Z","avatar_url":"https://github.com/Kali414.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📝 Meeting Summarizer API (Python + Node.js)\r\n\r\nThis repository contains two separate implementations of a **Meeting Summarizer API** that extracts structured insights from meeting transcripts using **Google Gemini API**.\r\n- 🐍 Python (Flask)\r\n- 🟢 Node.js (Express)\r\n\r\nBoth versions leverage **Google Gemini 1.5 Flash** to extract structured insights from meeting transcripts:\r\n\r\n- ✅ A concise summary\r\n- ✅ Key decisions made\r\n- ✅ Action items (task, owner, deadline)\r\n\r\n---\r\n\r\n## 📂 Project Structure\r\n\r\n- /python → Python Flask Langchain implementation\r\n- /node → Node.js Express implementation\r\n- /data → Sample input transcript files\r\n\r\n```yaml\r\n\r\nEach implementation includes its own:\r\n- API setup\r\n- Route to accept meeting transcript\r\n- Gemini API integration\r\n- Sample output\r\n\r\n---\r\n\r\n## ✨ Features\r\n\r\n- Accepts transcript input in:\r\n  - 🧾 Raw text\r\n  - 🧠 JSON body\r\n  - 📁 Uploaded `.txt` file\r\n- Uses **Gemini 1.5 Flash** model for summarization\r\n- Returns clean and structured **JSON output**\r\n- API documentation \u0026 Postman-ready examples\r\n\r\n---\r\n\r\n## 📊 Sample Output Format\r\n\r\n```json\r\n{\r\n  \"summary\": \"The team discussed project deadlines and assigned tasks.\",\r\n  \"decisions\": [\r\n    \"Final review scheduled for Sept 15\"\r\n  ],\r\n  \"actionItems\": [\r\n    {\r\n      \"task\": \"Create slide deck\",\r\n      \"owner\": \"Alex\",\r\n      \"due\": \"Sept 10\"\r\n    }\r\n  ]\r\n}\r\n\r\n```\r\n\r\n## 📦 Install \u0026 Run\r\n\r\nEach implementation has its **own README** with complete installation and usage instructions.\r\n\r\n---\r\n\r\n## 📦 Setup Instructions\r\n\r\n\u003e 🛠️ Follow the setup and run instructions in the respective folder’s README:\r\n\r\n- [Python Flask Setup Guide →](./python/README.md)\r\n- [Node.js Express Setup Guide →](./node/README.md)\r\n\r\nEach README includes:\r\n- Installation steps\r\n- Running the local development server\r\n- Testing the `/process_meeting` API route using Postman or curl\r\n\r\n---\r\n\r\n\r\n## 🧪 Example Datasets\r\nTwo sample transcript files are included under the /data directory:\r\n\r\nexample1.txt — Sample meeting transcript with clear responsibilities\r\n\r\nexample2.txt — A longer, real-world style meeting log\r\n\r\ndata_json.txt - Use the content of the file , if the transcript data is already structured in JSON format.\r\n\r\nYou can use these files to test the API by uploading via Postman or passing the text as input.\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkali414%2Fsalesduo_assignemnt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkali414%2Fsalesduo_assignemnt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkali414%2Fsalesduo_assignemnt/lists"}