hi guys, im new to using pheonix. i have setup an agentic system using crewai and have traced the entire thing. i am able to see the span in my account in the browser. but how to access that span/trace from a jupyter notebook. load_dotenv('.env',override=True) PHOENIX_API_KEY = os.getenv('PHOENIX_API_KEY') os.environ["PHOENIX_CLIENT_HEADERS"] = f"api_key={PHOENIX_API_KEY}" os.environ["PHOENIX_COLLECTOR_ENDPOINT"] = "https://app.phoenix.arize.com" tracer_provider = register( project_name="testing-1", # Default is 'default' auto_instrument=True # See 'Trace all calls made to a library' below ) tracer = tracer_provider.get_tracer(__name__) CrewAIInstrumentor().instrument(skip_dep_check=True, tracer_provider=tracer_provider) LangChainInstrumentor().instrument(tracer_provider=tracer_provider) now how do i make use of the data from the trace which i am able to see in my pheonix. can anyone kindly help out
hi guys, im new to using pheonix. i have setup an agentic system using crewai and have traced the entire thing. i am able to see the span in my account in the browser. but how to access that span/trace from a jupyter notebook. load_dotenv('.env',override=True) PHOENIX_API_KEY = os.getenv('PHOENIX_API_KEY') os.environ["PHOENIX_CLIENT_HEADERS"] = f"api_key={PHOENIX_API_KEY}" os.environ["PHOENIX_COLLECTOR_ENDPOINT"] = "https://app.phoenix.arize.com" tracer_provider = register( project_name="testing-1", # Default is 'default' auto_instrument=True # See 'Trace all calls made to a library' below ) tracer = tracer_provider.get_tracer(__name__) CrewAIInstrumentor().instrument(skip_dep_check=True, tracer_provider=tracer_provider) LangChainInstrumentor().instrument(tracer_provider=tracer_provider) now how do i make use of the data from the trace which i am able to see in my pheonix.
