Programmer-RD-AI commited on
Commit
e706c41
·
1 Parent(s): 5b73d4d

feat: update default endpoint URL in PlaygroundStore

Browse files
Files changed (1) hide show
  1. src/store.ts +1 -1
src/store.ts CHANGED
@@ -89,7 +89,7 @@ export const usePlaygroundStore = create<PlaygroundStore>()(
89
  setHasStorage: (hasStorage) => set(() => ({ hasStorage })),
90
  chatInputRef: { current: null },
91
  selectedEndpoint:
92
- process.env.NEXT_PUBLIC_DEFAULT_ENDPOINT || 'http://localhost:7777',
93
  setSelectedEndpoint: (selectedEndpoint) =>
94
  set(() => ({ selectedEndpoint })),
95
  agents: [],
 
89
  setHasStorage: (hasStorage) => set(() => ({ hasStorage })),
90
  chatInputRef: { current: null },
91
  selectedEndpoint:
92
+ process.env.NEXT_PUBLIC_DEFAULT_ENDPOINT || 'https://sifa-classification-agentic-rag-99329044472.asia-south1.run.app',
93
  setSelectedEndpoint: (selectedEndpoint) =>
94
  set(() => ({ selectedEndpoint })),
95
  agents: [],