mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
Fixes # <!-- Replace everything above this line with a 1-2 sentence description of your change. Keep the "Fixes #xx" keyword and update the issue number. --> Read the full contributing guidelines: https://docs.langchain.com/oss/python/contributing/overview > **All contributions must be in English.** See the [language policy](https://docs.langchain.com/oss/python/contributing/overview#language-policy). If you paste a large clearly AI generated description here your PR may be IGNORED or CLOSED! Thank you for contributing to LangGraph! Follow these steps to have your pull request considered as ready for review. 1. PR title: Should follow the format: TYPE(SCOPE): DESCRIPTION - feat(langgraph): add multi-tenant support - Allowed TYPE and SCOPE values: https://github.com/langchain-ai/langgraph/blob/main/.github/workflows/pr_lint.yml#L19-L43 2. PR description: - Write 1-2 sentences summarizing the change. - The `Fixes #xx` line at the top is **required** for external contributions — update the issue number and keep the keyword. This links your PR to the approved issue and auto-closes it on merge. - If there are any breaking changes, please clearly describe them. - If this PR depends on another PR being merged first, please include "Depends on #PR_NUMBER" in the description. 3. Run `make format`, `make lint` and `make test` from the root of the package(s) you've modified. - We will not consider a PR unless these three are passing in CI. 4. How did you verify your code works? Additional guidelines: - All external PRs must link to an issue or discussion where a solution has been approved by a maintainer, and you must be assigned to that issue. PRs without prior approval will be closed. - PRs should not touch more than one package unless absolutely necessary. - Do not update the `uv.lock` files or add dependencies to `pyproject.toml` files (even optional ones) unless you have explicit permission to do so by a maintainer. ## Social handles (optional) <!-- If you'd like a shoutout on release, add your socials below --> Twitter: @ LinkedIn: https://linkedin.com/in/
106 lines
2.6 KiB
Python
106 lines
2.6 KiB
Python
import functools
|
|
import json
|
|
import os
|
|
import pathlib
|
|
import platform
|
|
import threading
|
|
import urllib.error
|
|
import urllib.request
|
|
from typing import Any, TypedDict
|
|
|
|
from langgraph_cli.constants import (
|
|
DEFAULT_CONFIG,
|
|
DEFAULT_PORT,
|
|
SUPABASE_PUBLIC_API_KEY,
|
|
SUPABASE_URL,
|
|
)
|
|
from langgraph_cli.version import __version__
|
|
|
|
|
|
class LogData(TypedDict):
|
|
os: str
|
|
os_version: str
|
|
python_version: str
|
|
cli_version: str
|
|
cli_command: str
|
|
params: dict[str, Any]
|
|
|
|
|
|
def get_anonymized_params(
|
|
kwargs: dict[str, Any], *, cli_command: str
|
|
) -> dict[str, bool | str]:
|
|
params: dict[str, bool | str] = {}
|
|
|
|
if cli_command == "deploy" and (
|
|
analytics_source := os.getenv("LANGGRAPH_CLI_ANALYTICS_SOURCE")
|
|
):
|
|
params["source"] = analytics_source
|
|
|
|
# anonymize params with values
|
|
if config := kwargs.get("config"):
|
|
if config != pathlib.Path(DEFAULT_CONFIG).resolve():
|
|
params["config"] = True
|
|
|
|
if port := kwargs.get("port"):
|
|
if port != DEFAULT_PORT:
|
|
params["port"] = True
|
|
|
|
if kwargs.get("docker_compose"):
|
|
params["docker_compose"] = True
|
|
|
|
if kwargs.get("debugger_port"):
|
|
params["debugger_port"] = True
|
|
|
|
if kwargs.get("postgres_uri"):
|
|
params["postgres_uri"] = True
|
|
|
|
# pick up exact values for boolean flags
|
|
for boolean_param in ["recreate", "pull", "watch", "wait", "verbose"]:
|
|
if kwargs.get(boolean_param):
|
|
params[boolean_param] = kwargs[boolean_param]
|
|
|
|
return params
|
|
|
|
|
|
def log_data(data: LogData) -> None:
|
|
headers = {
|
|
"Content-Type": "application/json",
|
|
"apikey": SUPABASE_PUBLIC_API_KEY,
|
|
"User-Agent": "Mozilla/5.0",
|
|
}
|
|
supabase_url = SUPABASE_URL
|
|
|
|
req = urllib.request.Request(
|
|
f"{supabase_url}/rest/v1/logs",
|
|
data=json.dumps(data).encode("utf-8"),
|
|
headers=headers,
|
|
method="POST",
|
|
)
|
|
|
|
try:
|
|
urllib.request.urlopen(req)
|
|
except urllib.error.URLError:
|
|
pass
|
|
|
|
|
|
def log_command(func):
|
|
@functools.wraps(func)
|
|
def decorator(*args, **kwargs):
|
|
if os.getenv("LANGGRAPH_CLI_NO_ANALYTICS") == "1":
|
|
return func(*args, **kwargs)
|
|
|
|
data = {
|
|
"os": platform.system(),
|
|
"os_version": platform.version(),
|
|
"python_version": platform.python_version(),
|
|
"cli_version": __version__,
|
|
"cli_command": func.__name__,
|
|
"params": get_anonymized_params(kwargs, cli_command=func.__name__),
|
|
}
|
|
|
|
background_thread = threading.Thread(target=log_data, args=(data,))
|
|
background_thread.start()
|
|
return func(*args, **kwargs)
|
|
|
|
return decorator
|