├── .gitattributes ├── __init__.py ├── app.py ├── bidding └── init_project.py ├── bidding_workflow.py ├── config.py ├── init_project.py ├── inputs ├── score.md └── tech.md ├── llmkey.py ├── logs └── app.log ├── prompts.py ├── readme.md └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/.gitattributes -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # 空文件,标记为Python包 -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/app.py -------------------------------------------------------------------------------- /bidding/init_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/bidding/init_project.py -------------------------------------------------------------------------------- /bidding_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/bidding_workflow.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/config.py -------------------------------------------------------------------------------- /init_project.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inputs/score.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/inputs/score.md -------------------------------------------------------------------------------- /inputs/tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/inputs/tech.md -------------------------------------------------------------------------------- /llmkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/llmkey.py -------------------------------------------------------------------------------- /logs/app.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/prompts.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riddle911/autobid/HEAD/requirements.txt --------------------------------------------------------------------------------