This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Example of using pydantic-ai and inspect-ai together. | |
| Sorry, untested!!! | |
| .. code-block:: console | |
| # Run the script | |
| $ uv run --script agent.py | |
| To run either the agent or evaluations with inspect-ai, you need to modify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import click | |
| import hashlib | |
| import requests | |
| from pathlib import Path | |
| from tqdm import tqdm | |
| CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help']) |