import os
from llm_utils.client import get_openai_client
MODEL = "gpt-4o"
client = get_openai_client(
    model=MODEL,
    config_path=os.environ.get("CONFIG_PATH")
)Exercise: GPT Parameterization
Task: Explore the parameterization possibilities of the OpenAI API for GPT.
Instructions:
Some possibilities are:
- Use the systemrole in order to give instructions to the language model before the interaction with the user starts in order to change the response style of the model.
- Change the temparatureortop_pparameters and explore the effect on your prompts.
- Use the
# here goes your code