import os
from llm_utils.client import get_openai_client
= "gpt4"
MODEL
= get_openai_client(
client =MODEL,
model=os.environ.get("CONFIG_PATH")
config_path )
Exercise: GPT Parameterization
Task: Explore the parameterization possibilities of the OpenAI API for GPT.
Instructions:
Some possibilities are:
- Use the
system
role 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
temparature
ortop_p
parameters and explore the effect on your prompts. - Use the
# here goes your code