Exercise: GPT Parameterization

Task: Explore the parameterization possibilities of the OpenAI API for GPT.

Instructions:

Some possibilities are:

import os
from llm_utils.client import get_openai_client

MODEL = "gpt4"

client = get_openai_client(
    model=MODEL,
    config_path=os.environ.get("CONFIG_PATH")
)
# here goes your code
Back to top