Uplevel your networking game with LinkedIn posts about your job
Write a LinkedIn post about how to start a career in tech:
If you're interested in starting a career in tech, there are a few things you can do to get started. First, make sure you have the necessary skills and knowledge. Second, find a company or organization that is willing to train you in your chosen field. Third, take advantage of online resources and communities to connect with other professionals and learn about potential job opportunities. Finally, don't be afraid to reach out to potential employers and ask about available positions. With a little hard work and networking, you can start a successful career in the tech industry.
1import cohere
2co = cohere.Client('{apiKey}')
3response = co.generate(
4 model='command',
5 prompt='Write a LinkedIn post about how to start a career in tech:',
6 max_tokens=200,
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')
14print('Prediction: {}'.format(response.generations[0].text))
model_size | command |
temperature | 0.9 |
k | 0 |
frequency_penalty | 0 |
p | 1 |
presence_penalty | 0 |
max_tokens | 200 |