chore(cli): Add config schema (#6142)

So you can IDE LSP support / autocompletion
This commit is contained in:
William FH
2025-09-12 12:16:07 -07:00
committed by GitHub
parent 77a63608d1
commit b65140a892
6 changed files with 6 additions and 1 deletions
+1
View File
@@ -1,4 +1,5 @@
{
"$schema": "https://langgra.ph/schema.json",
"python_version": "3.12",
"dependencies": [
"langchain_community",
@@ -1,4 +1,5 @@
{
"$schema": "https://langgra.ph/schema.json",
"dependencies": [
"."
],
@@ -1,4 +1,5 @@
{
"$schema": "https://langgra.ph/schema.json",
"dependencies": [
"."
],
+1
View File
@@ -1,4 +1,5 @@
{
"$schema": "https://langgra.ph/schema.json",
"node_version": "20",
"graphs": {
"agent": "./src/agent/graph.ts:graph"
@@ -1,4 +1,5 @@
{
"$schema": "https://langgra.ph/schema.json",
"dependencies": [".", "../../libs/shared", "../../libs/common"],
"graphs": {
"agent": "./src/agent/graph.py:graph"
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/langchain-ai/langgraph/refs/heads/main/libs/cli/schemas/schema.json",
"$schema": "https://langgra.ph/schema.json",
"graphs": {
"app": "tests/example_app/example_graph.py:app"
},