langgraph-api 0.1.6__tar.gz → 0.1.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of langgraph-api might be problematic. Click here for more details.
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/PKG-INFO +1 -1
- langgraph_api-0.1.8/langgraph_api/__init__.py +1 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/__init__.py +1 -3
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/meta.py +8 -2
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/openapi.py +3 -1
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/client.http.mts +7 -1
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/package.json +1 -1
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/api.test.mts +17 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/http.mts +11 -1
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/package.json +1 -1
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/yarn.lock +4 -4
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/yarn.lock +4 -4
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/metadata.py +5 -1
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/pyproject.toml +1 -1
- langgraph_api-0.1.6/langgraph_api/__init__.py +0 -1
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/LICENSE +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/README.md +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/assistants.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/mcp.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/runs.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/store.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/threads.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/api/ui.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/asyncio.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/auth/__init__.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/auth/custom.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/auth/langsmith/__init__.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/auth/langsmith/backend.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/auth/langsmith/client.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/auth/middleware.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/auth/noop.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/auth/studio_user.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/cli.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/command.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/config.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/cron_scheduler.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/errors.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/graph.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/http.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/.gitignore +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/.prettierrc +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/__init__.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/base.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/build.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/client.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/errors.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/global.d.ts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/remote.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/schema.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/graph.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/hooks.mjs +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/parser/parser.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/parser/parser.worker.mjs +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/schema/types.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/schema/types.template.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/utils/files.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/utils/importMap.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/utils/pythonSchemas.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/src/utils/serde.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/sse.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/auth.test.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/compose-postgres.auth.yml +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/compose-postgres.yml +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/.gitignore +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/agent.css +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/agent.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/agent.ui.tsx +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/agent_simple.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/auth.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/command.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/delay.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/dynamic.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/error.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/langgraph.json +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/nested.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/graphs/weather.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/parser.test.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/utils.mts +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/ui.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/logging.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/middleware/__init__.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/middleware/http_logger.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/middleware/private_network.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/models/__init__.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/models/run.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/patch.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/queue_entrypoint.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/route.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/schema.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/serde.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/server.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/sse.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/state.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/stream.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/thread_ttl.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/utils.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/validation.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/webhook.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/worker.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_license/__init__.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_license/middleware.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_license/validation.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_runtime/__init__.py +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/logging.json +0 -0
- {langgraph_api-0.1.6 → langgraph_api-0.1.8}/openapi.json +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.8"
|
|
@@ -18,7 +18,7 @@ from langgraph_api.api.store import store_routes
|
|
|
18
18
|
from langgraph_api.api.threads import threads_routes
|
|
19
19
|
from langgraph_api.api.ui import ui_routes
|
|
20
20
|
from langgraph_api.auth.middleware import auth_middleware
|
|
21
|
-
from langgraph_api.config import HTTP_CONFIG, MIGRATIONS_PATH
|
|
21
|
+
from langgraph_api.config import HTTP_CONFIG, MIGRATIONS_PATH, MOUNT_PREFIX
|
|
22
22
|
from langgraph_api.graph import js_bg_tasks
|
|
23
23
|
from langgraph_api.js.base import is_js_path
|
|
24
24
|
from langgraph_api.validation import DOCS_HTML
|
|
@@ -44,8 +44,6 @@ async def openapi(request: Request):
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
async def docs(request: Request):
|
|
47
|
-
from langgraph_api.config import MOUNT_PREFIX
|
|
48
|
-
|
|
49
47
|
return HTMLResponse(DOCS_HTML.format(mount_prefix=MOUNT_PREFIX or ""))
|
|
50
48
|
|
|
51
49
|
|
|
@@ -2,7 +2,7 @@ import os
|
|
|
2
2
|
|
|
3
3
|
from starlette.responses import JSONResponse, PlainTextResponse
|
|
4
4
|
|
|
5
|
-
from langgraph_api import config
|
|
5
|
+
from langgraph_api import config, metadata
|
|
6
6
|
from langgraph_api.route import ApiRequest
|
|
7
7
|
from langgraph_license.validation import plus_features_enabled
|
|
8
8
|
from langgraph_runtime.database import connect, pool_stats
|
|
@@ -20,7 +20,13 @@ async def meta_info(request: ApiRequest):
|
|
|
20
20
|
"assistants": True,
|
|
21
21
|
"crons": plus and config.FF_CRONS_ENABLED,
|
|
22
22
|
"langsmith": bool(config.LANGSMITH_API_KEY) and bool(config.TRACING),
|
|
23
|
-
}
|
|
23
|
+
},
|
|
24
|
+
"host": {
|
|
25
|
+
"kind": metadata.HOST,
|
|
26
|
+
"project_id": metadata.PROJECT_ID,
|
|
27
|
+
"revision_id": metadata.REVISION,
|
|
28
|
+
"tenant_id": metadata.TENANT_ID,
|
|
29
|
+
},
|
|
24
30
|
}
|
|
25
31
|
)
|
|
26
32
|
|
|
@@ -5,7 +5,7 @@ from functools import lru_cache
|
|
|
5
5
|
|
|
6
6
|
import orjson
|
|
7
7
|
|
|
8
|
-
from langgraph_api.config import LANGGRAPH_AUTH, LANGGRAPH_AUTH_TYPE
|
|
8
|
+
from langgraph_api.config import LANGGRAPH_AUTH, LANGGRAPH_AUTH_TYPE, MOUNT_PREFIX
|
|
9
9
|
from langgraph_api.graph import GRAPHS
|
|
10
10
|
from langgraph_api.validation import openapi
|
|
11
11
|
|
|
@@ -78,6 +78,8 @@ def get_openapi_spec() -> str:
|
|
|
78
78
|
final = openapi
|
|
79
79
|
if CUSTOM_OPENAPI_SPEC:
|
|
80
80
|
final = merge_openapi_specs(openapi, CUSTOM_OPENAPI_SPEC)
|
|
81
|
+
if MOUNT_PREFIX:
|
|
82
|
+
final["servers"] = [{"url": MOUNT_PREFIX}]
|
|
81
83
|
return orjson.dumps(final)
|
|
82
84
|
|
|
83
85
|
|
|
@@ -69,7 +69,7 @@ const wrapHonoApp = (app: Hono) => {
|
|
|
69
69
|
// alongside any accumulated headers from middlewares.
|
|
70
70
|
// TODO: figure out how to compose the user-land `notFound` handler.
|
|
71
71
|
newApp.notFound(async (c) => {
|
|
72
|
-
//
|
|
72
|
+
// Send the request body back to the Python server
|
|
73
73
|
// Use the cached body in-case the user mutated the body
|
|
74
74
|
let payload: any = null;
|
|
75
75
|
try {
|
|
@@ -127,6 +127,12 @@ async function main() {
|
|
|
127
127
|
.parse(JSON.parse(process.env.LANGGRAPH_HTTP ?? "{}"));
|
|
128
128
|
|
|
129
129
|
if (!http.app) throw new Error("No HTTP app path provided");
|
|
130
|
+
|
|
131
|
+
// register loopback
|
|
132
|
+
const urlSmb = Symbol.for("langgraph_api:url");
|
|
133
|
+
const global = globalThis as unknown as { [urlSmb]?: string };
|
|
134
|
+
global[urlSmb] = `http://localhost:${process.env.PORT || 9123}`;
|
|
135
|
+
|
|
130
136
|
const app = await registerHttp(http.app, { cwd: process.cwd() });
|
|
131
137
|
|
|
132
138
|
serve({ fetch: app.fetch, hostname: "localhost", port: HTTP_PORT }, (c) =>
|
|
@@ -2080,3 +2080,20 @@ it("custom routes - mutate request body", async () => {
|
|
|
2080
2080
|
]),
|
|
2081
2081
|
});
|
|
2082
2082
|
});
|
|
2083
|
+
|
|
2084
|
+
it("custom routes - langgraph", async () => {
|
|
2085
|
+
const fetcher = async (...args: Parameters<typeof fetch>) => {
|
|
2086
|
+
const res = await fetch(...args);
|
|
2087
|
+
if (!res.ok) throw new Error(`${res.status} ${res.statusText}`);
|
|
2088
|
+
return { json: await res.json(), headers: res.headers };
|
|
2089
|
+
};
|
|
2090
|
+
|
|
2091
|
+
const res = await fetcher(new URL("/custom/client", API_URL));
|
|
2092
|
+
expect(res.json).toEqual({
|
|
2093
|
+
result: {
|
|
2094
|
+
messages: expect.arrayContaining([
|
|
2095
|
+
expect.objectContaining({ content: "input" }),
|
|
2096
|
+
]),
|
|
2097
|
+
},
|
|
2098
|
+
});
|
|
2099
|
+
});
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { Hono } from "hono";
|
|
2
2
|
import { HTTPException } from "hono/http-exception";
|
|
3
3
|
import { streamText } from "hono/streaming";
|
|
4
|
+
import { Client } from "@langchain/langgraph-sdk";
|
|
4
5
|
|
|
5
6
|
let WEBHOOK_PAYLOAD: Record<string, unknown>;
|
|
6
7
|
|
|
7
8
|
export const app = new Hono<{
|
|
8
|
-
Variables: {
|
|
9
|
+
Variables: {
|
|
10
|
+
body: string | ArrayBuffer | ReadableStream | null;
|
|
11
|
+
};
|
|
9
12
|
}>()
|
|
10
13
|
.use(async (c, next) => {
|
|
11
14
|
if (c.req.query("interrupt") != null) {
|
|
@@ -34,6 +37,13 @@ export const app = new Hono<{
|
|
|
34
37
|
|
|
35
38
|
await next();
|
|
36
39
|
})
|
|
40
|
+
.get("/custom/client", async (c) => {
|
|
41
|
+
const result = await new Client().runs.wait(null, "agent_simple", {
|
|
42
|
+
input: { messages: [{ role: "human", content: "input" }] },
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
return c.json({ result });
|
|
46
|
+
})
|
|
37
47
|
.get("/custom/my-route", (c) =>
|
|
38
48
|
c.json(
|
|
39
49
|
{ foo: "bar" },
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
dependencies:
|
|
33
33
|
uuid "^10.0.0"
|
|
34
34
|
|
|
35
|
-
"@langchain/langgraph-sdk@^0.0.
|
|
36
|
-
version "0.0.
|
|
37
|
-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.
|
|
38
|
-
integrity sha512-
|
|
35
|
+
"@langchain/langgraph-sdk@^0.0.67", "@langchain/langgraph-sdk@~0.0.32":
|
|
36
|
+
version "0.0.67"
|
|
37
|
+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.67.tgz#d856110727669f59cf9367cea99d88479de164d4"
|
|
38
|
+
integrity sha512-JWa0OuiXPoFztmBleUj6N00snuZt80Df6BSMUEjBfMSRNVPn7yiyyz/QTkzuW1LqqVZKPI4O8Bpimnw2xIg3BA==
|
|
39
39
|
dependencies:
|
|
40
40
|
"@types/json-schema" "^7.0.15"
|
|
41
41
|
p-queue "^6.6.2"
|
|
@@ -235,10 +235,10 @@
|
|
|
235
235
|
dependencies:
|
|
236
236
|
uuid "^10.0.0"
|
|
237
237
|
|
|
238
|
-
"@langchain/langgraph-sdk@^0.0.
|
|
239
|
-
version "0.0.
|
|
240
|
-
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.
|
|
241
|
-
integrity sha512-
|
|
238
|
+
"@langchain/langgraph-sdk@^0.0.67", "@langchain/langgraph-sdk@~0.0.32":
|
|
239
|
+
version "0.0.67"
|
|
240
|
+
resolved "https://registry.yarnpkg.com/@langchain/langgraph-sdk/-/langgraph-sdk-0.0.67.tgz#d856110727669f59cf9367cea99d88479de164d4"
|
|
241
|
+
integrity sha512-JWa0OuiXPoFztmBleUj6N00snuZt80Df6BSMUEjBfMSRNVPn7yiyyz/QTkzuW1LqqVZKPI4O8Bpimnw2xIg3BA==
|
|
242
242
|
dependencies:
|
|
243
243
|
"@types/json-schema" "^7.0.15"
|
|
244
244
|
p-queue "^6.6.2"
|
|
@@ -24,9 +24,11 @@ logger = structlog.stdlib.get_logger(__name__)
|
|
|
24
24
|
INTERVAL = 300
|
|
25
25
|
REVISION = os.getenv("LANGSMITH_LANGGRAPH_API_REVISION")
|
|
26
26
|
VARIANT = os.getenv("LANGSMITH_LANGGRAPH_API_VARIANT")
|
|
27
|
+
PROJECT_ID = os.getenv("LANGSMITH_HOST_PROJECT_ID")
|
|
28
|
+
TENANT_ID = os.getenv("LANGSMITH_TENANT_ID")
|
|
27
29
|
if VARIANT == "cloud":
|
|
28
30
|
HOST = "saas"
|
|
29
|
-
elif
|
|
31
|
+
elif PROJECT_ID:
|
|
30
32
|
HOST = "byoc"
|
|
31
33
|
else:
|
|
32
34
|
HOST = "self-hosted"
|
|
@@ -103,6 +105,8 @@ async def metadata_loop() -> None:
|
|
|
103
105
|
"langgraph.platform.revision": REVISION,
|
|
104
106
|
"langgraph.platform.variant": VARIANT,
|
|
105
107
|
"langgraph.platform.host": HOST,
|
|
108
|
+
"langgraph.platform.tenant_id": TENANT_ID,
|
|
109
|
+
"langgraph.platform.project_id": PROJECT_ID,
|
|
106
110
|
"langgraph.platform.plan": PLAN,
|
|
107
111
|
# user app features
|
|
108
112
|
"user_app.uses_indexing": USES_INDEXING,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.6"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langgraph_api-0.1.6 → langgraph_api-0.1.8}/langgraph_api/js/tests/compose-postgres.auth.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|