ReComA is a library designed to enable easy development of solutions for reasoning problems via communicating agents. It is a generalization of the codebase for Decomposed Prompting. The key features of the library:
If you want to directly make changes in this library, set it up using conda
conda create -n recoma python=3.9
conda activate recoma
pip install -r requirements.txt
To install it as a dependency in your own conda environment
pip install -e .
OpenAI Setup
This library relies on the OPENAI_API_KEY
environment variable to call GPT3+ models. Make sure
to set this env. variable
export OPENAI_API_KEY=<key>
The library can be used to solve complex reasoning tasks in two modes:
python -m recoma.run_inference \
--config configs/inference/letter_cat/decomp.jsonnet \
--output_dir output/letter_cat_decomp/ \
--gradio_demo
This will start an interactive server on http://localhost:7860 for the kth letter concatenation task. Try the following question (no QID/Context needed):
Take the letters at position 3 of the words in "Reasoning via Communicating Agents" and concatenate them using a space.
The library will use text-davinci-002
model with Decomposed Prompting (specified via the input
config file) to answer this question. You can open the collapsed nodes (indicated with ▶) to see
the full execution trace (along with the prompts).
To use the library to produce predictions for an input file (e.g. the 3rd letter concatenation dataset with 4 words):
python -m recoma.run_inference \
--config configs/inference/letter_cat/decomp.jsonnet \
--output_dir output/letter_cat_decomp/ \
--input datasets/letter_cat/n4_eg100_pos2_space.json
Running this script will populate the output directory with :
predictions.json
: qid-to-prediction mapall_data.jsonl
: Input examples with model predictions and correctness label (using exact match)html_dump/
: Dump of the execution traces for all the examples in HTML formatsource_config.json
: JSON config used to run this experiment (for future reproducibility)If the provided agents are sufficient for your work, you can use this library by just defining the
configuration files and prompts. See examples in the configs/
folder.
If you define a new agent (see the models README), you need to load
them when running inference. Assuming your agents are defined under the package my_new_agents_pkg
python -m recoma.run_inference \
--config configs/inference/letter_cat/decomp.jsonnet \
--output_dir output/letter_cat_decomp/ \
--input datasets/letter_cat/n4_eg100_pos2_space.json \
--include_package my_new_agents_pkg
Please reach out if there are any questions or issues.