(provider, messages, system_prompt="hi", tools=None)
| 131 | |
| 132 | |
| 133 | def _run(provider, messages, system_prompt="hi", tools=None): |
| 134 | return asyncio.run( |
| 135 | _call_model_sync( |
| 136 | provider=provider, |
| 137 | messages=messages, |
| 138 | system_prompt=system_prompt, |
| 139 | tools=tools or [], |
| 140 | ) |
| 141 | ) |
| 142 | |
| 143 | |
| 144 | class TestAdvisorActiveOnFirstPartyAnthropic(unittest.TestCase): |
no test coverage detected