├── .gitignore ├── LICENSE ├── README.md ├── benchmark.py ├── deepseek_aider_evaluator.py ├── dynamic_fewshot_routing.py ├── jeopardy_dataset.py ├── math_calculator.py ├── math_calculator_optimizer.py ├── math_dataset_generator.py ├── math_evaluator.py ├── math_multiplication_optimizer.py ├── reasoning_pipeline.py ├── researcher.py ├── researcher_optimizer.py ├── residual_pipeline.py ├── residual_pipeline_optimizer.py ├── serper_search.py ├── signatures.py └── tree_of_thoughts.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/benchmark.py -------------------------------------------------------------------------------- /deepseek_aider_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/deepseek_aider_evaluator.py -------------------------------------------------------------------------------- /dynamic_fewshot_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/dynamic_fewshot_routing.py -------------------------------------------------------------------------------- /jeopardy_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/jeopardy_dataset.py -------------------------------------------------------------------------------- /math_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/math_calculator.py -------------------------------------------------------------------------------- /math_calculator_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/math_calculator_optimizer.py -------------------------------------------------------------------------------- /math_dataset_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/math_dataset_generator.py -------------------------------------------------------------------------------- /math_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/math_evaluator.py -------------------------------------------------------------------------------- /math_multiplication_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/math_multiplication_optimizer.py -------------------------------------------------------------------------------- /reasoning_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/reasoning_pipeline.py -------------------------------------------------------------------------------- /researcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/researcher.py -------------------------------------------------------------------------------- /researcher_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/researcher_optimizer.py -------------------------------------------------------------------------------- /residual_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/residual_pipeline.py -------------------------------------------------------------------------------- /residual_pipeline_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/residual_pipeline_optimizer.py -------------------------------------------------------------------------------- /serper_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/serper_search.py -------------------------------------------------------------------------------- /signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/signatures.py -------------------------------------------------------------------------------- /tree_of_thoughts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-doerr/dspy_reasoning/HEAD/tree_of_thoughts.py --------------------------------------------------------------------------------