Turns a product description into a list of functional, emotional, and social benefits.
Turn the following product feature into a list of benefits. Group them into three types of benefits: Functional Benefits, Emotional Benefits, and Social Benefits.
Product Feature:
Our app automatically transcribes your meetings. It uses state-of-the-art speech-to-text technology that works even in noisy backgrounds. Once the transcription is done, our app creates its summary and automatically emails it to the meeting attendees.
Functional Benefits:
- Save time by not having to take notes during meetings
- Increase accuracy by not having to rely on your own memory
- Reduce stress by not having to worry about forgetting something important
Emotional Benefits:
- Feel more engaged and included in the meeting
- Get a better understanding of what was discussed
- Feel like your time was well-spent
Social Benefits:
- Increase collaboration and teamwork
- Encourage employees to share their ideas
- Make it easier for people to stay up-to-date on what's happening in the company
import cohereco = cohere.Client('{apiKey}')response = co.generate(model='command-xlarge-20221108',prompt='Turn the following product feature into a list of benefits. Group them into three types of benefits: Functional Benefits, Emotional Benefits, and Social Benefits.\n\nProduct Feature:\nOur app automatically transcribes your meetings. It uses state-of-the-art speech-to-text technology that works even in noisy backgrounds. Once the transcription is done, our app creates its summary and automatically emails it to the meeting attendees.',max_tokens=200,temperature=0.4,k=0,p=0.75,frequency_penalty=0,presence_penalty=0,stop_sequences=[],return_likelihoods='NONE')print('Prediction: {}'.format(response.generations[0].text))
model_size | command xlarge |
frequency_penalty | 0 |
k | 0 |
max_tokens | 200 |
p | 0.75 |
presence_penalty | 0 |
temperature | 0.4 |