├── .chainlit └── config.toml ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── chainlit.md ├── public └── logo.png ├── render.yaml └── requirements.txt /.chainlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renyuantime/openai-assistant/HEAD/.chainlit/config.toml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renyuantime/openai-assistant/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | translations 3 | .files 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renyuantime/openai-assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renyuantime/openai-assistant/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renyuantime/openai-assistant/HEAD/app.py -------------------------------------------------------------------------------- /chainlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renyuantime/openai-assistant/HEAD/chainlit.md -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renyuantime/openai-assistant/HEAD/public/logo.png -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renyuantime/openai-assistant/HEAD/render.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | chainlit --------------------------------------------------------------------------------