basic_prompt_template = """Answer the question.
Q: {{question}}
A:
"""
basic_prompt = PromptTemplate(template=basic_prompt_template)
cohere = CohereAPI(stop_token="\n")
cohere.query(basic_prompt.render(question="Can chatGPT transcribe audio to text?"))
'Yes, chatGPT can transcribe audio to text.'