Added
- The agents can now accept an `additional_context` argument of type string or Callable. If callable, expects an async function that accepts a single input review item (e.g., to retrieve the relevant context for that unique item in RAG use cases)
- Added the `scoring_review_rag` use case to the example folders.
Changed
- Moved `examples/scoring_review_test.ipynb` to `examples/scoring_review_simple/scoring_review_simple.ipynb`.
- Updated all provider classes so that they can now directly accept classes inheriting from pydantic.BaseModel as `response_format_class`.
- Updated the naming convention of prompts in the agent methods for further clarity.
- Added `_` to all internal methods of `BasicReviewer` class.
- All example data spreadsheets are now named as `data.csv`.
- Updated all the docs to reflect all the above changes.
- Updated the `README.md` file to reflect all the above changes.
Fixed
- Addressed a bug in the `scoring_review_prompt.txt` that caused the reasoning and examples not to be read by the agents.