11
11
12
12
UUID_MAP = {}
13
13
14
+
14
15
def get_new_uuid (old_id ):
15
16
"""
16
17
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.
18
19
"""
19
20
if old_id in UUID_MAP :
20
21
new_id = UUID_MAP [old_id ]
@@ -23,9 +24,15 @@ def get_new_uuid(old_id):
23
24
UUID_MAP [old_id ] = new_id
24
25
return new_id
25
26
27
+
26
28
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
+ )
29
36
30
37
for trace in sorted (evaluation_traces , key = lambda x : x ["start_time" ]):
31
38
new_id = get_new_uuid (trace ["id" ])
@@ -46,7 +53,12 @@ def create_demo_data(base_url: str, workspace_name, comet_api_key):
46
53
# We have a simple chatbot application built using llama-index.
47
54
# We gave it the content of Opik documentation as context, and then asked it a few questions.
48
55
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
+ )
50
62
51
63
for trace in sorted (demo_traces , key = lambda x : x ["start_time" ]):
52
64
new_id = get_new_uuid (trace ["id" ])
0 commit comments