{"id":28863169,"url":"https://github.com/code-master-harsh/study-crew-v2","last_synced_at":"2026-04-24T20:34:04.650Z","repository":{"id":299774248,"uuid":"1003513057","full_name":"code-master-harsh/study-crew-v2","owner":"code-master-harsh","description":"An AI-powered study assistant using CrewAI that extracts text from PDFs and generates structured summaries and notes. Modular agent-based design with YAML-configured tasks and tools.","archived":false,"fork":false,"pushed_at":"2025-06-18T07:35:19.000Z","size":417,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-18T08:31:53.041Z","etag":null,"topics":["ai-assistant","automation","crewai","langchain","llm","modular-ai","openai-api","poetry","python","study-tool"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/code-master-harsh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-06-17T09:03:28.000Z","updated_at":"2025-06-18T07:35:23.000Z","dependencies_parsed_at":"2025-06-18T08:44:26.888Z","dependency_job_id":null,"html_url":"https://github.com/code-master-harsh/study-crew-v2","commit_stats":null,"previous_names":["code-master-harsh/study-crew-v2"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/code-master-harsh/study-crew-v2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-master-harsh%2Fstudy-crew-v2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-master-harsh%2Fstudy-crew-v2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-master-harsh%2Fstudy-crew-v2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-master-harsh%2Fstudy-crew-v2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code-master-harsh","download_url":"https://codeload.github.com/code-master-harsh/study-crew-v2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-master-harsh%2Fstudy-crew-v2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32239850,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: 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":["ai-assistant","automation","crewai","langchain","llm","modular-ai","openai-api","poetry","python","study-tool"],"created_at":"2025-06-20T07:02:05.592Z","updated_at":"2026-04-24T20:34:04.645Z","avatar_url":"https://github.com/code-master-harsh.png","language":"Python","readme":"# study-crew-v2\n\nAI-powered study assistant built with CrewAI.  \nUpload study materials (PDFs), and interact with an intelligent agent crew to generate summaries and structured notes.\n\n---\n\n## 🚀 Features\n\n- 🧠 Extracts text from PDF study material  \n- ✍️ Generates concise summaries and structured notes  \n- 🤖 Modular CrewAI agent orchestration  \n- ⚙️ Extensible tool setup and agent config via YAML  \n\n---\n\n## 📁 Project Structure\n\n```\nstudy_crew_v2/\n├── pyproject.toml\n├── poetry.lock\n├── knowledge/             # Upload your PDF files here\n├── src/\n│   └── study_crew_v2/\n│       ├── main.py        # Entrypoint to run the crew\n│       ├── crew.py        # Crew and agent assembly\n│       ├── config/\n│       │   ├── agents.yaml\n│       │   └── tasks.yaml\n│       └── tools/\n│           └── custom_tool.py\n├── .env.example           # Example environment variables\n```\n\n---\n\n## 🛠️ Installation\n\n\u003e This project uses [Poetry](https://python-poetry.org/) for dependency management.\n\n### 1. Clone the repo\n\n```bash\ngit clone https://github.com/YOUR-USERNAME/study-crew-v2.git\ncd study-crew-v2\n```\n\n### 2. Install Poetry (if not already installed)\n\n```bash\ncurl -sSL https://install.python-poetry.org | python3 -\n```\n\nOr via pipx:\n\n```bash\npipx install poetry\n```\n\n### 3. Install dependencies\n\n```bash\npoetry install\n```\n\n### 4. Create `.env` file\n\nDuplicate the `.env.example` file and fill in your API keys and configuration:\n\n```bash\ncp .env.example .env\n```\n\nEdit `.env` with your Azure OpenAI details.\n\n---\n\n## 🧪 Running the Project\n\n### Upload study materials\n\nPlace all your `.pdf` files in the `knowledge/` directory.\n\n### Start the AI Crew\n\n```bash\npoetry run run_crew\n```\n\n---\n\n## 🔐 .env Configuration\n\nExample `.env.example`:\n\n```\nmodel=azure/gpt-35-turbo\nAZURE_OPENAI_API_KEY=your_azure_api_key_here\nAZURE_OPENAI_ENDPOINT=https://your-endpoint.openai.azure.com/\nAZURE_OPENAI_API_VERSION=2024-05-01-preview # API version for Azure OpenAI\nAZURE_OPENAI_DEPLOYMENT_NAME=gpt-35-turbo # Deployment name for Azure OpenAI\n\nOPENAI_API_KEY=your_azure_api_key_here\n```\n\n\u003e Both Azure OpenAI and OpenAI key fields are set for compatibility. Use Azure credentials for both.\n\n---\n\n## 🧩 Dependencies\n\n- `crewai[tools]`\n- `openai`, `langchain`, `langchain-openai`, `langchain-core`, `langchain-tools`\n- `pymupdf` for PDF parsing\n\nAll handled via Poetry in `pyproject.toml`.\n\n---\n\n## ✍️ Author\n\n**Harsh Vardhan Sharma**\n\n[GitHub Profile](https://github.com/code-master-harsh)\n\n---","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-master-harsh%2Fstudy-crew-v2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode-master-harsh%2Fstudy-crew-v2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-master-harsh%2Fstudy-crew-v2/lists"}