Skip to content

Commit cf21d09

Browse files
committed
Fix formatting
1 parent 5db762d commit cf21d09

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

sdks/python/examples/demo_data_generator.py

+16-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111

1212
UUID_MAP = {}
1313

14+
1415
def get_new_uuid(old_id):
1516
"""
1617
The demo_data has the IDs hardcoded in, to preserve the relationships between the traces and spans.
17-
However, we need to generate unique ones before logging them.
18+
However, we need to generate unique ones before logging them.
1819
"""
1920
if old_id in UUID_MAP:
2021
new_id = UUID_MAP[old_id]
@@ -23,9 +24,15 @@ def get_new_uuid(old_id):
2324
UUID_MAP[old_id] = new_id
2425
return new_id
2526

27+
2628
def create_demo_data(base_url: str, workspace_name, comet_api_key):
27-
28-
client = opik.Opik(project_name="Demo evaluation", workspace=workspace_name, host=base_url, api_key=comet_api_key)
29+
30+
client = opik.Opik(
31+
project_name="Demo evaluation",
32+
workspace=workspace_name,
33+
host=base_url,
34+
api_key=comet_api_key,
35+
)
2936

3037
for trace in sorted(evaluation_traces, key=lambda x: x["start_time"]):
3138
new_id = get_new_uuid(trace["id"])
@@ -46,7 +53,12 @@ def create_demo_data(base_url: str, workspace_name, comet_api_key):
4653
# We have a simple chatbot application built using llama-index.
4754
# We gave it the content of Opik documentation as context, and then asked it a few questions.
4855

49-
client = opik.Opik(project_name="Demo chatbot 🤖", workspace=workspace_name, host=base_url, api_key=comet_api_key)
56+
client = opik.Opik(
57+
project_name="Demo chatbot 🤖",
58+
workspace=workspace_name,
59+
host=base_url,
60+
api_key=comet_api_key,
61+
)
5062

5163
for trace in sorted(demo_traces, key=lambda x: x["start_time"]):
5264
new_id = get_new_uuid(trace["id"])

0 commit comments

Comments
 (0)