├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app.py ├── pages ├── 1_🏞️_Chat_with_image.py └── 2_📊_Chat_with_graph.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- 1 | # provide openai api key 2 | OPENAI_API_KEY= 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlchemyAI/ViLT-GPT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlchemyAI/ViLT-GPT/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlchemyAI/ViLT-GPT/HEAD/app.py -------------------------------------------------------------------------------- /pages/1_🏞️_Chat_with_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlchemyAI/ViLT-GPT/HEAD/pages/1_🏞️_Chat_with_image.py -------------------------------------------------------------------------------- /pages/2_📊_Chat_with_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlchemyAI/ViLT-GPT/HEAD/pages/2_📊_Chat_with_graph.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeAlchemyAI/ViLT-GPT/HEAD/requirements.txt --------------------------------------------------------------------------------