{"id":26862226,"url":"https://github.com/devparihar5/voice-chat-agent","last_synced_at":"2026-04-22T05:31:09.543Z","repository":{"id":284524706,"uuid":"955217788","full_name":"Devparihar5/voice-chat-agent","owner":"Devparihar5","description":"Voice Chat Agent is an interactive Streamlit application designed to simulate conversations specifically related to Devendra Parihar","archived":false,"fork":false,"pushed_at":"2025-03-26T10:02:51.000Z","size":151,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-06T15:06:06.167Z","etag":null,"topics":["openai","speech-recognition","tts","voice-assistant"],"latest_commit_sha":null,"homepage":"https://voice-chat-agent.streamlit.app/","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/Devparihar5.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-03-26T09:46:38.000Z","updated_at":"2025-05-05T09:38:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"3cac23e3-67c1-4190-b4d6-1e9da48f3d89","html_url":"https://github.com/Devparihar5/voice-chat-agent","commit_stats":null,"previous_names":["devparihar5/voice-chat-agent"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Devparihar5/voice-chat-agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devparihar5%2Fvoice-chat-agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devparihar5%2Fvoice-chat-agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devparihar5%2Fvoice-chat-agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devparihar5%2Fvoice-chat-agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Devparihar5","download_url":"https://codeload.github.com/Devparihar5/voice-chat-agent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devparihar5%2Fvoice-chat-agent/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267677080,"owners_count":24126309,"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-07-29T02:00:12.549Z","response_time":2574,"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":["openai","speech-recognition","tts","voice-assistant"],"created_at":"2025-03-31T02:35:44.951Z","updated_at":"2026-04-22T05:31:04.523Z","avatar_url":"https://github.com/Devparihar5.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Voice Chat Agent\n\n## Overview\nVoice Chat Agent is an interactive Streamlit application designed to simulate conversations specifically related to **Devendra Parihar**. The application supports two-way communication, leveraging **OpenAI's GPT-4** model for intelligent responses and **edge-tts** for text-to-speech capabilities. Users can input queries via text or voice and receive context-aware responses.\n\n## Features\n\n- **Text-to-Audio Mode**: Converts text-based queries into voice responses.\n- **Audio-to-Audio Mode**: Records and transcribes voice queries, processes them, and provides voice responses.\n- **Know More About Devendra**: Showcases a PDF viewer for detailed information.\n- **Vector Store Search**: Uses FAISS for efficient similarity search in textual data.\n- **GPT-4 Integration**: Provides intelligent, context-aware responses.\n\n## Installation\n\n### Prerequisites\nEnsure you have the following installed on your machine:\n\n- **Python 3.8 or higher**\n- **Streamlit**\n- **OpenAI API Key**\n- **edge-tts**\n\n### Setup\n\n1. **Clone the Repository**\n```bash\ngit clone https://github.com/Devparihar5/voice-chat-agent.git\ncd voice-chat-agent\n```\n\n2. **Create a Virtual Environment (Recommended)**\n```bash\npython -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n3. **Install Dependencies**\n```bash\npip install -r requirements.txt\n```\n\n4. **Set Up the Required Files**\n- Place your information file at `files/my_info.txt`.\n- Place your resume PDF at `files/Devendra-Parihar-Resume.pdf`.\n\n5. **Run the Application**\n```bash\nstreamlit run app.py\n```\n\n## Usage\n\n1. Open the URL provided by Streamlit in your browser.\n2. Select the mode from the sidebar:\n   - **Text-to-Audio**: Type a question and receive audio responses.\n   - **Audio-to-Audio**: Record a voice query and receive audio responses.\n   - **Know More About Devendra**: View or download Devendra Parihar's resume.\n3. Ensure you provide your **OpenAI API key** in the sidebar.\n\n## Project Structure\n```\nvoice-chat-agent/\n├── files/\n│   ├── my_info.txt\n│   ├── Devendra-Parihar-Resume.pdf\n├── app.py\n├── requirements.txt\n├── README.md\n```\n\n## Technologies Used\n\n- **Streamlit**: Web interface.\n- **OpenAI GPT-4**: Intelligent responses.\n- **edge-tts**: Text-to-speech audio generation.\n- **FAISS**: Vector store for document similarity search.\n- **LangChain**: Prompt templates and chain handling.\n\n## Contributing\nContributions are welcome! Feel free to fork the repository and create a pull request with suggested improvements or new features.\n\n## Contact\nFor any queries, reach out to **Devendra Parihar**:\n\n- **GitHub**: [Devparihar5](https://github.com/Devparihar5)\n- **LinkedIn**: [Devendra Parihar](https://www.linkedin.com/in/devendra-parihar/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevparihar5%2Fvoice-chat-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevparihar5%2Fvoice-chat-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevparihar5%2Fvoice-chat-agent/lists"}