├── .chainlit ├── config.toml └── translations │ ├── bn.json │ ├── en-US.json │ ├── gu.json │ ├── he-IL.json │ ├── hi.json │ ├── kn.json │ ├── ml.json │ ├── mr.json │ ├── ta.json │ ├── te.json │ └── zh-CN.json ├── .env.sample ├── .gitattributes ├── .gitignore ├── Dockerfile ├── README.md ├── __pycache__ └── app.cpython-311.pyc ├── app.py ├── chainlit.md └── requirements.txt /.chainlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/config.toml -------------------------------------------------------------------------------- /.chainlit/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/bn.json -------------------------------------------------------------------------------- /.chainlit/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/en-US.json -------------------------------------------------------------------------------- /.chainlit/translations/gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/gu.json -------------------------------------------------------------------------------- /.chainlit/translations/he-IL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/he-IL.json -------------------------------------------------------------------------------- /.chainlit/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/hi.json -------------------------------------------------------------------------------- /.chainlit/translations/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/kn.json -------------------------------------------------------------------------------- /.chainlit/translations/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/ml.json -------------------------------------------------------------------------------- /.chainlit/translations/mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/mr.json -------------------------------------------------------------------------------- /.chainlit/translations/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/ta.json -------------------------------------------------------------------------------- /.chainlit/translations/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/te.json -------------------------------------------------------------------------------- /.chainlit/translations/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.chainlit/translations/zh-CN.json -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/app.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/__pycache__/app.cpython-311.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/app.py -------------------------------------------------------------------------------- /chainlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/chainlit.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI-Maker-Space/Chainlit-Event-AIM/HEAD/requirements.txt --------------------------------------------------------------------------------