File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/traceloop-sdk/traceloop/sdk Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ class Instruments(Enum):
7
7
BEDROCK = "bedrock"
8
8
CHROMA = "chroma"
9
9
COHERE = "cohere"
10
- CREW = "crew"
10
+ CREWAI = "crewai"
11
+ CREW = "crewai" # deprecated alias; remove in future major version
11
12
GOOGLE_GENERATIVEAI = "google_generativeai"
12
13
GROQ = "groq"
13
14
HAYSTACK = "haystack"
Original file line number Diff line number Diff line change @@ -455,7 +455,7 @@ def init_instrumentations(
455
455
elif instrument == Instruments .COHERE :
456
456
if init_cohere_instrumentor ():
457
457
instrument_set = True
458
- elif instrument == Instruments .CREW :
458
+ elif instrument == Instruments .CREWAI :
459
459
if init_crewai_instrumentor ():
460
460
instrument_set = True
461
461
elif instrument == Instruments .GOOGLE_GENERATIVEAI :
You can’t perform that action at this time.
0 commit comments