├── .DS_Store ├── .env.example ├── .gitmodules ├── EXTENDING_ACE.md ├── LICENSE.txt ├── README.md ├── ace ├── __init__.py ├── ace.py ├── core │ ├── __init__.py │ ├── bulletpoint_analyzer.py │ ├── curator.py │ ├── generator.py │ └── reflector.py └── prompts │ ├── __init__.py │ ├── curator.py │ ├── generator.py │ └── reflector.py ├── assets └── images │ └── ace_framework.png ├── finance ├── data │ ├── finer_test_subset_006_seed42.jsonl │ ├── finer_train_batched_1000_samples.jsonl │ ├── finer_val_batched_500_samples.jsonl │ ├── formula_test.jsonl │ ├── formula_train_subset_500.jsonl │ ├── formula_val_subset_300.jsonl │ └── sample_config.json ├── data_processor.py └── run.py ├── llm.py ├── logger.py ├── playbook_utils.py ├── requirements.txt └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/.env.example -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/.gitmodules -------------------------------------------------------------------------------- /EXTENDING_ACE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/EXTENDING_ACE.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/README.md -------------------------------------------------------------------------------- /ace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/__init__.py -------------------------------------------------------------------------------- /ace/ace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/ace.py -------------------------------------------------------------------------------- /ace/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/core/__init__.py -------------------------------------------------------------------------------- /ace/core/bulletpoint_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/core/bulletpoint_analyzer.py -------------------------------------------------------------------------------- /ace/core/curator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/core/curator.py -------------------------------------------------------------------------------- /ace/core/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/core/generator.py -------------------------------------------------------------------------------- /ace/core/reflector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/core/reflector.py -------------------------------------------------------------------------------- /ace/prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/prompts/__init__.py -------------------------------------------------------------------------------- /ace/prompts/curator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/prompts/curator.py -------------------------------------------------------------------------------- /ace/prompts/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/prompts/generator.py -------------------------------------------------------------------------------- /ace/prompts/reflector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/ace/prompts/reflector.py -------------------------------------------------------------------------------- /assets/images/ace_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/assets/images/ace_framework.png -------------------------------------------------------------------------------- /finance/data/finer_test_subset_006_seed42.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/data/finer_test_subset_006_seed42.jsonl -------------------------------------------------------------------------------- /finance/data/finer_train_batched_1000_samples.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/data/finer_train_batched_1000_samples.jsonl -------------------------------------------------------------------------------- /finance/data/finer_val_batched_500_samples.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/data/finer_val_batched_500_samples.jsonl -------------------------------------------------------------------------------- /finance/data/formula_test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/data/formula_test.jsonl -------------------------------------------------------------------------------- /finance/data/formula_train_subset_500.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/data/formula_train_subset_500.jsonl -------------------------------------------------------------------------------- /finance/data/formula_val_subset_300.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/data/formula_val_subset_300.jsonl -------------------------------------------------------------------------------- /finance/data/sample_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/data/sample_config.json -------------------------------------------------------------------------------- /finance/data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/data_processor.py -------------------------------------------------------------------------------- /finance/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/finance/run.py -------------------------------------------------------------------------------- /llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/llm.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/logger.py -------------------------------------------------------------------------------- /playbook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/playbook_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ace-agent/ace/HEAD/utils.py --------------------------------------------------------------------------------