-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(auth): UI guidance on how to set api keys for tracing and experi… (
#4578) * feat(auth): UI guidance on how to set api keys for tracing and experiments * remove hook * Update app/src/components/project/PythonProjectGuide.tsx Co-authored-by: Parker Stafford <52351508+Parker-Stafford@users.noreply.github.com> * Update app/src/components/project/TypeScriptProjectGuide.tsx Co-authored-by: Parker Stafford <52351508+Parker-Stafford@users.noreply.github.com> * Update app/src/pages/dataset/RunExperimentButton.tsx Co-authored-by: Parker Stafford <52351508+Parker-Stafford@users.noreply.github.com> --------- Co-authored-by: Parker Stafford <52351508+Parker-Stafford@users.noreply.github.com>
- Loading branch information
1 parent
ce2ba76
commit 6b14b11
Showing
4 changed files
with
113 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { BASE_URL } from "@phoenix/config"; | ||
|
||
export const HOSTED_PHOENIX_URL = "https://app.phoenix.arize.com"; | ||
export const LLAMATRACE_URL = "https://llamatrace.com"; | ||
|
||
export const HOSTED_BASE_URLS = [HOSTED_PHOENIX_URL, LLAMATRACE_URL]; | ||
|
||
export const IS_HOSTED_DEPLOYMENT = HOSTED_BASE_URLS.includes(BASE_URL); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters