From 3f8d3f34054526173c0c9cd110d21d90fe993c3f Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 29 Dec 2023 14:43:16 -0600 Subject: [PATCH] Fix syntax error in W&B weave notebook (#964) --- examples/third_party/Openai_monitoring_with_wandb_weave.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/third_party/Openai_monitoring_with_wandb_weave.ipynb b/examples/third_party/Openai_monitoring_with_wandb_weave.ipynb index c8850aed..b80d35aa 100644 --- a/examples/third_party/Openai_monitoring_with_wandb_weave.ipynb +++ b/examples/third_party/Openai_monitoring_with_wandb_weave.ipynb @@ -119,7 +119,7 @@ }, "outputs": [], "source": [ - "WB_ENTITY = # set to your wandb username or team name\n", + "WB_ENTITY = \"\" # set to your wandb username or team name\n", "WB_PROJECT = \"weave\" # top-level directory for this work\n", "STREAM_NAME = \"openai_logs\" # record table which stores the logs of OpenAI API calls as they stream in" ]