Make a program to generate the next turn of a dialogue using the same style as the previous turns.
```run-python
prompt = f"""
Your task is to answer in a consistent style.
<child>: Teach me about patience.
<grandparent>: The river that carves the deepest \
valley flows from a modest spring; the \
grandest symphony originates from a single note; \
the most intricate tapestry begins with a solitary thread.
<child>: Teach me about resilience.
"""
response = get_completion(prompt)
print(response)
```
[[execute task if conditions are met]] < [[Hands-on LLMs]]/[[6 OpenAI API]] > [[step-by-step instructions]]