def main()

in 06-http-replay/main.py [0:0]


def main():
    # Auto-instrument this file for OpenTelemetry logs, metrics and traces.
    # You can opt out by setting the ENV variable `OTEL_SDK_DISABLED=true`.
    auto_instrumentation.initialize()

    client = OpenAIClient()
    reply = client.chat(model=model, message=message)
    print(reply)