惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
C
Check Point Blog
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
博客园_首页
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
V
Visual Studio Blog
小众软件
小众软件

LangChain Forum - Latest topics

Seeking help regarding the connection between Websocket and tool calls Tool invocation error with empty error message when using `InjectedState` + `Command` return in async tool How to use @langchain/react FileSystem middleware Using ChatSnowflake with agents Built llmsessioncontract on AgentMiddleware: runtime enforcement of tool-call protocols — feedback wanted DeltaChannelHistory not found in langgraph-api:3.12 Improving citation accuracy and reducing hallucinations in custom Parent-Child RAG pipeline (Gemma3:4B + FAISS+BM25 + Cross-encoder reranker) Built a live autonomous AI agent network using LangGraph-style economics — looking for feedback How are you validating LangChain agent output before it executes shell commands? Cross-site pattern pool for production agent failures — looking for 5 pilot teams (open spec, CC-BY-4.0) Metadata filter not filtering for alerts Using custom MCP servers with assistants How to use tool calling using ChatLlamaCpp and Gemma 4 E4B with create_agent? CLI - No Longer Sending traces to Langsmith Connecting the Slack integration fails with invalid_team_for_non_distributed_app The Docs says open router can be used with init_chat_model but throws an error Interested to contribute to langgraph postgre checkpointer for multiple adapter support Modal Inference Trouble understanding and editing experiment summary evaluators feedbacks SSL certificate error from httpx with LangGraph server [Feature Request] Wire allowed_msgpack_modules in langgraph.json Serving an agent with the LangGraph CLI dev command Proposal: implement delete_for_runs for SQLite checkpoint savers WikipediaLoader endup in JSONDecodeError Human-in-the-loop approval dashboard for LangGraph agents — open source, free to deploy Ombre — open source security and audit layer for LangChain apps Should interrupt() be split into two primitives — one for human input, one for s2s data fetching? Unable to delete runs from annotation queue First Bedrock call after idle is slow on TTFT (follow-ups in the same trace are fast)
LOGIC.md — declarative reasoning contracts that compile t...
SingleSource · 2026-04-20 · via LangChain Forum - Latest topics
Been building a declarative spec format for multi-agent reasoning, and the LangGraph adapter is the most developed integration. Posting here for feedback from people running StateGraph systems in production. What LOGIC.md is A YAML file that declares step DAGs, output contracts, quality gates, tool permissions, and fallback chains. Framework-agnostic, compiles to LangGraph today (CrewAI and AutoGen planned). Why this might matter for LangGraph users Right now, if you want StateGraph to enforce output contracts, quality gates, or tool permissions, you write it imperatively — validation logic in each node function, retry logic scattered across the graph. With LOGIC.md you declare it once: yaml contracts: outputs: sources: { type: array, items: { type: object } } quality_gates: post_output: - check: "outputs.sources.length > 0" action: retry max_retries: 3 The adapter compiles this to StateGraph node definitions with: Type-validated state schemas Pre/post node hooks for contract enforcement Automatic retry logic for failed quality gates Per-node tool permission checks Fallback edge routing typescript import { compile_to_langgraph } from "@logic-md/adapters/langgraph"; const spec = parse(markdownContent); const graph_builder = compile_to_langgraph(spec); const graph = graph_builder.compile(); // graph is a LangGraph StateGraph with LOGIC.md contracts baked in Adapter state (honest) Proof of concept. Core node compilation works. Quality gates and tool permissions are stubbed. Needs real workflows to validate the API — I built it in isolation so there are almost certainly design issues a production LangGraph user would catch immediately. What I’m looking for feedback on Does the LOGIC.md data model fit how you actually build LangGraph workflows, or are there primitives missing? For those running LangGraph at scale — what do you currently do for output contracts and quality gates? Imperative code, or something else? Streaming: how should declarative contracts behave when reasoning happens incrementally? Open design question. Are there LangGraph patterns you’d want the adapter tested against? Links Repo: https://github.com/SingularityAI-Dev/logic-md LangGraph adapter: https://github.com/SingularityAI-Dev/logic-md/tree/main/adapters/langgraph Spec: https://github.com/SingularityAI-Dev/logic-md/blob/main/docs/SPEC.md Happy to pair with anyone who wants to push the adapter forward, or take feedback issues on the repo. 1 post - 1 participant Read full topic