-
This is how my current set up looks like. I am not sure why the dashboard is still showing
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @gmorye! I'm here to help you with any bugs, questions, or contributions you have. Let's tackle this together! The issue with the dashboard still showing
By aligning the project name in your environment variable and code, and ensuring the environment variable is set before any initialization, you should be able to resolve the issue with the project name defaulting to |
Beta Was this translation helpful? Give feedback.
Hey @gmorye! I'm here to help you with any bugs, questions, or contributions you have. Let's tackle this together!
The issue with the dashboard still showing
default
as the project name might be due to a mismatch between the project name set in your code and the environment variable. Here are a few things to check and try:Environment Variable: Ensure that the
PHOENIX_PROJECT_NAME
environment variable is set correctly before running your application. The environment variable should match the project name you want to use. In your.env
file, you havePHOENIX_PROJECT_NAME="Client"
, but in your code, you setResourceAttributes.PROJECT_NAME
to "llm-evaluation-framework". Make sure these are…