Get a conversation template.
(name: str)
| 198 | |
| 199 | |
| 200 | def get_conv_template(name: str) -> Conversation: |
| 201 | """Get a conversation template.""" |
| 202 | return conv_templates[name].copy() |
| 203 | |
| 204 | |
| 205 | # A template with one conversation example |
no test coverage detected