diff --git a/src/providers/Stream.tsx b/src/providers/Stream.tsx index ab46843..db1c7bd 100644 --- a/src/providers/Stream.tsx +++ b/src/providers/Stream.tsx @@ -110,7 +110,9 @@ export const StreamProvider: React.FC<{ children: ReactNode }> = ({ className="flex flex-col gap-6 p-6 bg-muted/50" >
This is the URL of your LangGraph deployment. Can be a local, or production deployment. @@ -120,11 +122,14 @@ export const StreamProvider: React.FC<{ children: ReactNode }> = ({ name="apiUrl" className="bg-background" defaultValue={apiUrl ?? "http://localhost:2024"} + required />
This is the ID of the graph (can be the graph name), or assistant to fetch threads from, and invoke when actions are @@ -135,14 +140,17 @@ export const StreamProvider: React.FC<{ children: ReactNode }> = ({ name="assistantId" className="bg-background" defaultValue={assistantId ?? "agent"} + required />
- This is NOT required if This value is stored in your browser's local storage and is only - used to authenticate requests sent to your LangGraph server. + This is NOT required if using a local LangGraph + server. This value is stored in your browser's local storage and + is only used to authenticate requests sent to your LangGraph + server.