├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── Test.jpg ├── chat.py └── chatwithfiles.py ├── grok.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/GrokAiChat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/GrokAiChat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/GrokAiChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/GrokAiChat/HEAD/README.md -------------------------------------------------------------------------------- /examples/Test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/GrokAiChat/HEAD/examples/Test.jpg -------------------------------------------------------------------------------- /examples/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/GrokAiChat/HEAD/examples/chat.py -------------------------------------------------------------------------------- /examples/chatwithfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/GrokAiChat/HEAD/examples/chatwithfiles.py -------------------------------------------------------------------------------- /grok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vibheksoni/GrokAiChat/HEAD/grok.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | python-dotenv --------------------------------------------------------------------------------