Any other model available?

In the course the instructor says several time to try with other models to see the difference, so the question is - is there any other model available? if so, what are the env variable to use them too?

BTW i am specifically referring to these 2 lines in the notebook:

image

hi @Mikael_Sitruk

Response from staff might be delayed as they are on holiday till Jan 2nd for Christmas and New year.

I am not mentor for the course, but usually if any other llm model is advised to use, instruction box should mention which model and version to use, but it can come with its own dependencies issue.

If you want I can look at the assignment you are asking query for, but I need to know the lab name.

Regards
DP

2 Likes

Hey @Mikael_Sitruk. You could try any other of the OpenAI models, for example, gpt-4o. Just be mindful of the costs of each model, because you might run into a rate limit. You can also use your own API key to run different tests, just add the lines

os.environ["OPENAI_API_KEY"] = "<your-api-key>"
os.environ["OPENAI_API_BASE"]="https://api.openai.com/v1"

Hope this helps!
Cheers

2 Likes

thanks for your answer, so the course does not have built-in capacity for anthropic/gemini model usage, is that correct?

Yes, that’s correct. The labs are only provided with connection to OpenAI. You can always download the labs and test them locally if you want to check out how other models perform.

1 Like