Generate a list of 5 interview questions for a senior software engineer
Generate a list of 5 interview questions for a senior software engineer
1. What is your experience with software engineering best practices?
2. What programming languages are you comfortable working with?
3. Tell me about a time when you had to manage a complex software project.
4. What would you say is your greatest strength as a software engineer?
5. Have you ever been part of a team that developed a software product from scratch?
import cohereco = cohere.Client('{apiKey}')response = co.generate(model='command-xlarge-20221108',prompt='Generate a list of 5 interview questions for a senior software engineer',max_tokens=500,temperature=1.2,k=0,p=1,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 | 500 |
p | 1 |
presence_penalty | 0 |
temperature | 1.2 |