Industry: Workplace
Problem to solve: Too much time spent making slide decks.
Startup Idea: A platform that generates slide deck contents automatically based on a given outline.
Startup Name: Deckerize
--
Industry: Home Decor
Problem to solve: Not eveyone has the design skills and aesthetic taste in indoor landscaping.
Startup Idea: An app that calculates the best position of your indoor plants for your apartment.
Startup Name: Planteasy
--
Industry: Healthcare
Problem to solve: Hearing aid battery lasts too short.
Startup Idea: A hearing aid for the elderly that automatically adjusts its levels and with a battery lasting a whole week.
Startup Name: Hearspan
--
Industry: Education
Problem to solve: Students are bored and not engaged with the traditional school system.
Startup Idea: An online school that lets students mix and match their own curriculum based on their interests and goals.
Startup Name: Prime Age
--
Industry: Productivity
Problem to solve:
Problem to solve: Too much time is wasted to doing things not related to work. Startup Idea: A platform that allows you to outsource mundane tasks like housekeeping and errands.
Startup Name: Eden
1import cohere
2co = cohere.Client('{apiKey}')
3response = co.generate(
4 model='base',
5 prompt='Industry: Workplace Problem to solve: Too much time spent making slide decks. Startup Idea: A platform that generates slide deck contents automatically based on a given outline. Startup Name: Deckerize\n\n-- Industry: Home Decor Problem to solve: Not eveyone has the design skills and aesthetic taste in indoor landscaping. Startup Idea: An app that calculates the best position of your indoor plants for your apartment. Startup Name: Planteasy\n\n-- Industry: Healthcare Problem to solve: Hearing aid battery lasts too short. Startup Idea: A hearing aid for the elderly that automatically adjusts its levels and with a battery lasting a whole week. Startup Name: Hearspan\n\n-- Industry: Education Problem to solve: Students are bored and not engaged with the traditional school system. Startup Idea: An online school that lets students mix and match their own curriculum based on their interests and goals. Startup Name: Prime Age\n\n-- Industry: Productivity Problem to solve:',
6 max_tokens=50,
7 temperature=0.9,
8 k=0,
9 p=1,
10 frequency_penalty=0,
11 presence_penalty=0,
12 stop_sequences=[],
13 return_likelihoods='NONE',
14 language='en')
15print('Prediction: {}'.format(response.generations[0].text))
model_size | base |
max_tokens | 200 |
temperature | 0.9 |
k | 0 |
frequency_penalty | 0 |
p | 1 |