├── .gitignore ├── LICENSE ├── README.md ├── app ├── __init__.py ├── agent.py ├── api.py ├── config.py ├── demo.py ├── graph.py ├── index.html └── static │ ├── bigmodel.png │ ├── bot.png │ ├── chatgpt.png │ ├── deepseek.png │ ├── human.png │ ├── judge.png │ ├── kimi.png │ └── tongyiqianwen.png ├── img ├── AI-Debate.png └── AI-Debate2.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .idea/ 3 | __pycache__/ 4 | *.pyc 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/agent.py -------------------------------------------------------------------------------- /app/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/api.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/config.py -------------------------------------------------------------------------------- /app/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/demo.py -------------------------------------------------------------------------------- /app/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/graph.py -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/index.html -------------------------------------------------------------------------------- /app/static/bigmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/static/bigmodel.png -------------------------------------------------------------------------------- /app/static/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/static/bot.png -------------------------------------------------------------------------------- /app/static/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/static/chatgpt.png -------------------------------------------------------------------------------- /app/static/deepseek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/static/deepseek.png -------------------------------------------------------------------------------- /app/static/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/static/human.png -------------------------------------------------------------------------------- /app/static/judge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/static/judge.png -------------------------------------------------------------------------------- /app/static/kimi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/static/kimi.png -------------------------------------------------------------------------------- /app/static/tongyiqianwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/app/static/tongyiqianwen.png -------------------------------------------------------------------------------- /img/AI-Debate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/img/AI-Debate.png -------------------------------------------------------------------------------- /img/AI-Debate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/img/AI-Debate2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starshine-f/Agent-Debate/HEAD/requirements.txt --------------------------------------------------------------------------------