Skip to content

Commit

Permalink
fix: remove incorrect URL in python guide (#4845)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking authored Oct 3, 2024
1 parent 1016fff commit 2d263cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/project/PythonProjectGuide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function getEnvironmentVariablesPython({
if (isHosted) {
return `PHOENIX_CLIENT_HEADERS='api_key=<your-api-key>'\nPHOENIX_COLLECTOR_ENDPOINT='${HOSTED_PHOENIX_URL}'`;
} else if (isAuthEnabled) {
return `PHOENIX_API_KEY='<your-api-key>'\nPHOENIX_COLLECTOR_ENDPOINT='${HOSTED_PHOENIX_URL}'`;
return `PHOENIX_API_KEY='<your-api-key>'`;
}
return `PHOENIX_COLLECTOR_ENDPOINT='${BASE_URL}'`;
}
Expand Down

0 comments on commit 2d263cb

Please sign in to comment.