mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-10 11:47:51 +02:00
feat(sdk-js): Add output schema typedef
This commit is contained in:
@@ -39,11 +39,17 @@ export interface GraphSchema {
|
||||
graph_id: string;
|
||||
|
||||
/**
|
||||
* The schema for the graph state.
|
||||
* The schema for the input state.
|
||||
* Missing if unable to generate JSON schema from graph.
|
||||
*/
|
||||
input_schema?: JSONSchema7;
|
||||
|
||||
/**
|
||||
* The schema for the output state.
|
||||
* Missing if unable to generate JSON schema from graph.
|
||||
*/
|
||||
output_schema?: JSONSchema7;
|
||||
|
||||
/**
|
||||
* The schema for the graph state.
|
||||
* Missing if unable to generate JSON schema from graph.
|
||||
|
||||
Reference in New Issue
Block a user