Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
connected-znaim committed Nov 7, 2024
1 parent de2b4c1 commit 6b93a7e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions opentrons-ai-client/src/resources/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// ToDo (kk:05/29/2024) this should be switched by env var
export const STAGING_END_POINT =
'https://staging.opentrons.ai/api/chat/completion'
export const STAGING_FEEDBACK_END_POINT = 'https://staging.opentrons.ai/api/chat/feedback'
export const STAGING_FEEDBACK_END_POINT =
'https://staging.opentrons.ai/api/chat/feedback'
export const PROD_END_POINT = 'https://opentrons.ai/api/chat/completion'
export const PROD_FEEDBACK_END_POINT = 'https://opentrons.ai/api/chat/feedback'

Expand All @@ -21,6 +22,7 @@ export const LOCAL_AUTH0_CLIENT_ID = 'PcuD1wEutfijyglNeRBi41oxsKJ1HtKw'
export const LOCAL_AUTH0_AUDIENCE = 'sandbox-ai-api'
export const LOCAL_AUTH0_DOMAIN = 'identity.auth-dev.opentrons.com'
export const LOCAL_END_POINT = 'http://localhost:8000/api/chat/completion'
export const LOCAL_FEEDBACK_END_POINT = 'http://localhost:8000/api/chat/feedback'
export const LOCAL_FEEDBACK_END_POINT =
'http://localhost:8000/api/chat/feedback'

export const CLIENT_MAX_WIDTH = '1440px'

0 comments on commit 6b93a7e

Please sign in to comment.