Programmer-RD-AI
commited on
Commit
·
e706c41
1
Parent(s):
5b73d4d
feat: update default endpoint URL in PlaygroundStore
Browse files- 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 || '
|
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: [],
|