Get a conversation template.
(name: str)
| 408 | |
| 409 | |
| 410 | def get_conv_template(name: str) -> Conversation: |
| 411 | """Get a conversation template.""" |
| 412 | return conv_templates[name].copy() |
| 413 | |
| 414 | |
| 415 | # An empty template for raw conversation. |
searching dependent graphs…