Return the test messages to send to each model.
()
| 27 | |
| 28 | |
| 29 | def get_test_messages() -> List[Dict[str, str]]: |
| 30 | """Return the test messages to send to each model.""" |
| 31 | return [ |
| 32 | { |
| 33 | "role": "system", |
| 34 | "content": "Respond in Pirate English. Always try to include the phrase - No rum No fun.", |
| 35 | }, |
| 36 | {"role": "user", "content": "Tell me a joke about Captain Jack Sparrow"}, |
| 37 | ] |
| 38 | |
| 39 | |
| 40 | @pytest.mark.integration |
no outgoing calls
no test coverage detected