{"id":35887414,"url":"https://github.com/LikithMeruvu/Python-coding-Agent","last_synced_at":"2026-01-15T06:00:45.456Z","repository":{"id":243199453,"uuid":"808968531","full_name":"LikithMeruvu/Python-coding-Agent","owner":"LikithMeruvu","description":"Python Coding Agent is an Crew AI Agent built using OpenAI's GPT-3.5 and Groq, designed to help with coding tasks such as generating code snippets, debugging, and providing code explanations. It aims to enhance productivity and learning through interactive sessions.","archived":false,"fork":false,"pushed_at":"2024-06-08T08:51:00.000Z","size":17,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-08T10:07:54.815Z","etag":null,"topics":["agents","ai-agents","coding-agents","crewai","groq-api","langchain-python","langgraph","openai-api","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/LikithMeruvu.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-01T09:59:31.000Z","updated_at":"2024-06-08T08:51:03.000Z","dependencies_parsed_at":"2024-06-07T10:08:02.093Z","dependency_job_id":"0a2d874d-c1f3-42ba-9a21-735a7f92be64","html_url":"https://github.com/LikithMeruvu/Python-coding-Agent","commit_stats":null,"previous_names":["likithmeruvu/python-coding-agent"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LikithMeruvu/Python-coding-Agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LikithMeruvu%2FPython-coding-Agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LikithMeruvu%2FPython-coding-Agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LikithMeruvu%2FPython-coding-Agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LikithMeruvu%2FPython-coding-Agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LikithMeruvu","download_url":"https://codeload.github.com/LikithMeruvu/Python-coding-Agent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LikithMeruvu%2FPython-coding-Agent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28444124,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T05:05:00.929Z","status":"ssl_error","status_checked_at":"2026-01-15T05:04:58.515Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["agents","ai-agents","coding-agents","crewai","groq-api","langchain-python","langgraph","openai-api","python"],"created_at":"2026-01-08T22:00:39.537Z","updated_at":"2026-01-15T06:00:45.428Z","avatar_url":"https://github.com/LikithMeruvu.png","language":"Python","funding_links":[],"categories":["Agent Categories"],"sub_categories":["\u003ca name=\"Unclassified\"\u003e\u003c/a\u003eUnclassified"],"readme":"\n\n# Python Coding Agent\n\nA versatile Python agent utilizing OpenAI's GPT-3.5 to assist with various coding tasks, from generating code snippets to providing debugging help. This project aims to streamline the coding process by leveraging AI for enhanced productivity and learning.\n\n## Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n- [Usage](#usage)\n- [File Descriptions](#file-descriptions)\n- [License](#license)\n- [Contact](#contact)\n\n## Features\n\n- **Code Generation:** Generate code snippets based on natural language prompts.\n- **Debugging Assistance:** Get help with debugging Python code.\n- **Code Explanation:** Understand complex code with detailed explanations.\n- **Interactive Sessions:** Engage in interactive coding sessions with the agent.\n\n## Installation\n\n1. **Clone the Repository:**\n   ```bash\n   git clone https://github.com/LikithMeruvu/Python-coding-Agent.git\n   cd Python-coding-Agent\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 Dependencies:**\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n## Usage\n\nOpen Respective Files and Add you API info in Variables specified by 'your_api'\n\n1. **Run the Agent with GroqAPI:**\n   ```bash\n   python python-coding-agent.py\n   ```\n\n   **Run the Agent with OPENAI_API:**\n   ```bash\n   python openai-agent.py\n   ```\n\n1. **Interact with the Agent:**\n   - The agent will prompt you for input. Provide your coding queries, and the agent will respond accordingly.\n\n## File Descriptions\n\n- **langgraph.py:** Contains the logic for the agents in langgraph.\n- **openai-agent.py:** Manages interactions with the OpenAI API.\n- **python-coding-agent.py:** Core functionality of the Python coding agent.\n- **temp.py:** Temporary file for testing and experimentation.\n- **requirements.txt:** Lists all the dependencies required to run the project.\n- **README.md:** Provides an overview and usage instructions for the project.\n- **LICENSE:** License information for the project.\n\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nFor any questions or suggestions, please open an issue or reach out to the maintainer:\n\n- GitHub: [LikithMeruvu](https://github.com/LikithMeruvu)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLikithMeruvu%2FPython-coding-Agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FLikithMeruvu%2FPython-coding-Agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLikithMeruvu%2FPython-coding-Agent/lists"}