{"id":33227730,"url":"https://github.com/hissain/gtalk","last_synced_at":"2026-06-20T14:32:04.057Z","repository":{"id":324410164,"uuid":"1097187940","full_name":"hissain/gtalk","owner":"hissain","description":"A powerful command-line interface to interact with Google's AI Mode directly from your terminal without requiring any TOKEN. Get context aware AI-powered answers, code examples, and explanations without leaving your command line!","archived":false,"fork":false,"pushed_at":"2025-11-20T18:06:31.000Z","size":255,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-14T01:58:30.314Z","etag":null,"topics":["aimode","cli","command-line","command-line-tool","google","gtalk","interactive","pip","python","python-library","python-package","query","search","terminal"],"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/hissain.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-15T17:41:00.000Z","updated_at":"2025-11-20T18:06:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hissain/gtalk","commit_stats":null,"previous_names":["hissain/gtalk"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/hissain/gtalk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hissain%2Fgtalk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hissain%2Fgtalk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hissain%2Fgtalk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hissain%2Fgtalk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hissain","download_url":"https://codeload.github.com/hissain/gtalk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hissain%2Fgtalk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34573729,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"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":["aimode","cli","command-line","command-line-tool","google","gtalk","interactive","pip","python","python-library","python-package","query","search","terminal"],"created_at":"2025-11-16T16:04:02.857Z","updated_at":"2026-06-20T14:32:04.052Z","avatar_url":"https://github.com/hissain.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GTalk - Google AI Mode Terminal Query Tool\n\nA powerful command-line interface to interact with Google's AI Mode directly from your terminal. Get AI-powered context aware answers, code examples, and explanations without leaving your command line!\n\n## Features\n\n- **Interactive Mode** - Keep querying without restarting\n- **Context Aware** - Context aware subsequent query in interactive mode\n- **Code Block Support** - Properly formatted code examples\n- **Fast** - Browser session reused across queries\n- **Clean Output** - Well-formatted, readable responses\n- **Both Modes** - Interactive or single-query mode\n\n## Installation\n\n### From PyPI (Recommended)\n\n```bash\npip install gtalk\n```\n\n### From Source (Latest Features + Bugfixes)\n\n```bash\ngit clone https://github.com/hissain/gtalk.git\ncd gtalk\npip install -e .\n```\n\n## Quick Start\n\n### Interactive Mode\n\nSimply run:\n\n```bash\ngtalk\n```\n\nThen start asking questions:\n\n```\nQuery\u003e Who is Elon Musk?\nQuery\u003e How many children he has?\nQuery\u003e Write a python code for printing first 10 Fibonacci numbers?\nQuery\u003e quit\n```\n\n### Demo Terminal\n\n![Demo Terminal](res/Screenshot-Interactive-Mode.png)\n\n### Single Query Mode\n\n```bash\ngtalk \"What is machine learning?\"\n```\n\n## Command Line Arguments\n\n| Argument              | Description                                  |\n| --------------------- | -------------------------------------------- |\n| `-v`, `--verbose` | Enable verbose output for debugging purposes |\n| `-s`, `--short`   | Use short query mode                         |\n\n## Usage Examples\n\n### Getting Code Examples\n\n```bash\nQuery\u003e Write a Python function for bubble sort\n```\n\nOutput includes both explanation and code:\n\n```python\ndef bubble_sort(arr):\n    n = len(arr)\n    for i in range(n):\n        for j in range(0, n-i-1):\n            if arr[j] \u003e arr[j+1]:\n                arr[j], arr[j+1] = arr[j+1], arr[j]\n    return arr\n```\n\n### Learning Concepts\n\n```bash\nQuery\u003e Explain binary trees\nQuery\u003e What is the difference between TCP and UDP?\nQuery\u003e How does async/await work in JavaScript?\n```\n\n### Quick References\n\n```bash\nQuery\u003e Git command to undo last commit\nQuery\u003e Python list comprehension syntax\nQuery\u003e Docker commands cheat sheet\n```\n\n## Interactive Commands\n\nOnce in interactive mode:\n\n| Command                   | Description             |\n| ------------------------- | ----------------------- |\n| `[any text]`            | Query Google AI Mode    |\n| `help`                  | Show available commands |\n| `clear`                 | Clear the screen        |\n| `quit`, `exit`, `q` | Exit the program        |\n| `Ctrl+C`                | Force exit              |\n| `Ctrl+D`                | Alternative exit        |\n\n## Configuration\n\nGTalk uses headless Chrome by default. The browser session is reused across queries for better performance.\n\n## Troubleshooting\n\n### CAPTCHA Detected\n\nIf you see \"Google has detected automated access\":\n\n- Wait a few minutes between queries\n- Use a VPN or different network\n- Reduce query frequency\n\n### No Summary Found\n\nIf no AI summary is returned:\n\n- Try rephrasing your query\n- Use question format: \"What is...\", \"How to...\", \"Explain...\"\n- Some queries may not trigger AI Mode\n\n## Privacy \u0026 Rate Limiting\n\n- GTalk makes direct requests to Google\n- No data is stored or logged by this tool\n- Respect Google's rate limits - avoid excessive automated queries\n- Consider delays between queries if using programmatically\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Disclaimer\n\nThis tool is for educational and personal use only. It interacts with Google Search's public interface. Please use responsibly and in accordance with Google's Terms of Service.\n\n## Acknowledgments\n\n- Built with [Selenium](https://www.selenium.dev/)\n- Parsing powered by [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/)\n- Inspired by the need for quick terminal-based AI assistance\n\n## Contact \u0026 Support\n\n- **Author**: Md. Sazzad Hissain Khan\n- **Email**: hissain.khan@gmail.com\n- **GitHub**: [@hissain](https://github.com/hissain)\n- **Issues**: [GitHub Issues](https://github.com/hissain/gtalk/issues)\n\n---\n\nMade with love by [Md. Sazzad Hissain Khan](https://github.com/hissain)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhissain%2Fgtalk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhissain%2Fgtalk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhissain%2Fgtalk/lists"}