From 189b7b07aee511ec5ab2ccd5e58c78a23e832a44 Mon Sep 17 00:00:00 2001 From: Bryan Ndjeutcha <49378990+snakedye@users.noreply.github.com> Date: Mon, 12 Aug 2024 09:59:33 -0400 Subject: [PATCH] feat: Add user field to GPT client initialization (#16) The GPT client initialization in the `gpt.py` file was updated to include the `user` field. --- pipeline/gpt.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pipeline/gpt.py b/pipeline/gpt.py index c2b3155..ae3a8ec 100644 --- a/pipeline/gpt.py +++ b/pipeline/gpt.py @@ -77,6 +77,7 @@ def __init__(self, api_endpoint, api_key, deployment_id): api_version="2024-02-15-preview" self.dspy_client = dspy.AzureOpenAI( + user="fertiscan", api_base=api_endpoint, api_key=api_key, deployment_id=deployment_id,