├── .chainlit ├── config.toml └── translations │ ├── en-US.json │ └── pt-BR.json ├── .env.example ├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── agents ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ └── chainlit_agents.cpython-311.pyc └── chainlit_agents.py ├── app.py ├── asyncapp.py ├── chainlit.md ├── public ├── logo_dark.png └── logo_light.png └── requirements.txt /.chainlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/.chainlit/config.toml -------------------------------------------------------------------------------- /.chainlit/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/.chainlit/translations/en-US.json -------------------------------------------------------------------------------- /.chainlit/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/.chainlit/translations/pt-BR.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/README.md -------------------------------------------------------------------------------- /agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agents/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/agents/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /agents/__pycache__/chainlit_agents.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/agents/__pycache__/chainlit_agents.cpython-311.pyc -------------------------------------------------------------------------------- /agents/chainlit_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/agents/chainlit_agents.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/app.py -------------------------------------------------------------------------------- /asyncapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/asyncapp.py -------------------------------------------------------------------------------- /chainlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/chainlit.md -------------------------------------------------------------------------------- /public/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/public/logo_dark.png -------------------------------------------------------------------------------- /public/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/public/logo_light.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineross/Autogen-UI/HEAD/requirements.txt --------------------------------------------------------------------------------