├── .gitignore ├── DataProcessBot.py ├── LICENSE ├── LLMAgent ├── ConversationBot.py ├── buildGraph.py ├── callbackHandler.py ├── dataTools.py ├── dbConnector.py ├── getTime.py ├── plotGeoMap.py ├── plotHeatmap.py ├── plotIntersections.py ├── readDump.py ├── trafficTools.py └── websterOptimize.py ├── README.md ├── SimulationProcessBot.py ├── asset └── TrafficGPT.pdf ├── readme.zh.md ├── real-world-simulation-withTLS ├── add.add.xml ├── edgedata.xml ├── newTLS.add.xml ├── originalstate.xml ├── tempstate.xml ├── xuancheng - ORIGINAL.sumocfg ├── xuancheng.net.xml ├── xuancheng.rou.xml ├── xuancheng.settings.xml └── xuancheng.sumocfg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /DataProcessBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/DataProcessBot.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /LLMAgent/ConversationBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/ConversationBot.py -------------------------------------------------------------------------------- /LLMAgent/buildGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/buildGraph.py -------------------------------------------------------------------------------- /LLMAgent/callbackHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/callbackHandler.py -------------------------------------------------------------------------------- /LLMAgent/dataTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/dataTools.py -------------------------------------------------------------------------------- /LLMAgent/dbConnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/dbConnector.py -------------------------------------------------------------------------------- /LLMAgent/getTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/getTime.py -------------------------------------------------------------------------------- /LLMAgent/plotGeoMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/plotGeoMap.py -------------------------------------------------------------------------------- /LLMAgent/plotHeatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/plotHeatmap.py -------------------------------------------------------------------------------- /LLMAgent/plotIntersections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/plotIntersections.py -------------------------------------------------------------------------------- /LLMAgent/readDump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/readDump.py -------------------------------------------------------------------------------- /LLMAgent/trafficTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/trafficTools.py -------------------------------------------------------------------------------- /LLMAgent/websterOptimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/LLMAgent/websterOptimize.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/README.md -------------------------------------------------------------------------------- /SimulationProcessBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/SimulationProcessBot.py -------------------------------------------------------------------------------- /asset/TrafficGPT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/asset/TrafficGPT.pdf -------------------------------------------------------------------------------- /readme.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/readme.zh.md -------------------------------------------------------------------------------- /real-world-simulation-withTLS/add.add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/add.add.xml -------------------------------------------------------------------------------- /real-world-simulation-withTLS/edgedata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/edgedata.xml -------------------------------------------------------------------------------- /real-world-simulation-withTLS/newTLS.add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/newTLS.add.xml -------------------------------------------------------------------------------- /real-world-simulation-withTLS/originalstate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/originalstate.xml -------------------------------------------------------------------------------- /real-world-simulation-withTLS/tempstate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/tempstate.xml -------------------------------------------------------------------------------- /real-world-simulation-withTLS/xuancheng - ORIGINAL.sumocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/xuancheng - ORIGINAL.sumocfg -------------------------------------------------------------------------------- /real-world-simulation-withTLS/xuancheng.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/xuancheng.net.xml -------------------------------------------------------------------------------- /real-world-simulation-withTLS/xuancheng.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/xuancheng.rou.xml -------------------------------------------------------------------------------- /real-world-simulation-withTLS/xuancheng.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/xuancheng.settings.xml -------------------------------------------------------------------------------- /real-world-simulation-withTLS/xuancheng.sumocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/real-world-simulation-withTLS/xuancheng.sumocfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijlansg/TrafficGPT/HEAD/requirements.txt --------------------------------------------------------------------------------