Hey everyone!
I am running an arize-phoenix container on my laptop:
docker run -p 6006:6006 -p 4317:4317 -i -t arizephoenix/phoenix:latest
I want to connect to it with Python:
from phoenix.otel import register
project_name = "phoenix-arize-demo"
tracer_provider = register(
project_name=project_name,
endpoint="http://localhost:6006/v1/traces",
)
However, I don't see a project called "phoenix-arize-demo" when i go to localhost:6006.
I tried also
import os
os.environ["PHOENIX_COLLECTOR_ENDPOINT"] = "http://localhost:6006
Doesn't help.
I have a small dataset from which LLM is supposed to classify pieces of text into three categories and I wanted to use phoenix arize to inspect model outputs.