UNPKG

@arizeai/phoenix-client

Version:

A client for the Phoenix API

6 lines (5 loc) 214 B
/** * A project can be identified by its projectId or projectName * In the case of a projectName, the name must be url encodable */ export type ProjectSelector = { projectId: string } | { projectName: string };