How to create Assistants without using client side SDK? #4404
Answered
by
hinthornw
kingsotn-twelve
asked this question in
Q&A
-
this might a dumb question, but is there a way to create an Assistant when I run the LangGraph server without using the SDK's AssistantsClient from the client side? why:
followups:
|
Beta Was this translation helpful? Give feedback.
Answered by
hinthornw
Apr 24, 2025
Replies: 1 comment 1 reply
-
You can just use the graph name instead of an assistant UUID for all the relevant calls. Like "client.runs.create("agent", ...)". This is an alias for the initial "system-authored" assistant that is created for each graph (with an empty configuration) Most people start out by not creating any assistants. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kingsotn-twelve
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can just use the graph name instead of an assistant UUID for all the relevant calls. Like "client.runs.create("agent", ...)". This is an alias for the initial "system-authored" assistant that is created for each graph (with an empty configuration)
Most people start out by not creating any assistants.