Is it possible to deploy phoenix but turn the UI access off ?
We want to deploy the app and the backenddb and query this directly in production environments
Yes, it is possible to deploy Phoenix without enabling the UI. You can run the Phoenix server as a trace collector and query the backend directly using the provided APIs.According to the Phoenix deployment guide, you can set up the Phoenix server to collect traces and evaluations without necessarily exposing the UI. You can interact with the backend using the GraphQL API for querying traces and evaluations.Would you like more details on how to configure this setup?Sources:
- Phoenix deployment guide
馃挕聽Hint: Mention RunLLM in the thread for followups.
Got it. There鈥檚 no way to disable the GraphQL API or UI only, but we are starting in on auth, so it will be possible to deploy the entire application securely.