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
1import cohere
2co = cohere.Client('{apiKey}')
3response = co.generate(
4 model='command',
5 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.',
6 max_tokens=200,
7 temperature=0.4,
8 k=0,
9 p=0.75,
10 frequency_penalty=0,
11 presence_penalty=0,
12 stop_sequences=[],
13 return_likelihoods='NONE')
14print('Prediction: {}'.format(response.generations[0].text))
model_size | command |
p | 0.75 |
presence_penalty | 0 |
max_tokens | 200 |
temperature | 0.4 |
k | 0 |
frequency_penalty | 0 |