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

推荐订阅源

月光博客
月光博客
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
量子位
小众软件
小众软件
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
G
Google Developers Blog
博客园 - 叶小钗
H
Help Net Security
Jina AI
Jina AI
Y
Y Combinator Blog
Last Week in AI
Last Week in AI
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
MyScale Blog
MyScale Blog
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Vercel News
Vercel News

LangChain Forum - Latest posts

Prompt_cache_retention: '24h' supported in langchain agents and where to provide it, inside invoke or while creating client? Could RAG pipelines realistically cause deployment timeouts, is Render suitable for first-time RAG deployments? How do I use langchain_postgres' init_vectorstore_table correctly? Proposal: Graph-wide default error handler for StateGraph (fallback for nodes without error_handler) Support timedelta for CachePolicy.ttl, consistent with TimeoutPolicy Question about LangSmith Trace Search via API How to cancel a run correct !! Anyone confirms this issue that deepagent ui streaming is disturb by update in deepagent or bug issue Would pre-inference routing help long-context agent workflows? Best Stack for Building AI Applications Question about LangSmith Trace Search 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) Metadata filter not filtering for alerts Connecting the Slack integration fails with invalid_team_for_non_distributed_app Trouble understanding and editing experiment summary evaluators feedbacks SSL certificate error from httpx with LangGraph server WikipediaLoader endup in JSONDecodeError Human-in-the-loop approval dashboard for LangGraph agents — open source, free to deploy Should interrupt() be split into two primitives — one for human input, one for s2s data fetching? How are people handling data governance across agent handoffs in production? Feature Request: @task metadata Research: Friction Points in Agentic Commerce Transactions How should I provide an agent to a LangGraph server?
Machine-Readable Permissions for Web-Interacting Agents
jstibal · 2026-04-20 · via LangChain Forum - Latest posts
Building agents that browse, scrape, and call APIs is straightforward with LangChain. Knowing what your agent is actually allowed to do on a given domain is not. We built OpenTerms, an open protocol that gives every website a machine-readable permissions file (openterms.json) declaring what AI agents can do: read content, scrape data, call APIs, make purchases, train models. Agents check the file before acting, the same way crawlers check robots.txt before crawling. Why this matters for agent developers shipping to production: No more guessing whether a site permits scraping or API access Conditional permissions handled natively (e.g., “scraping prohibited except with written consent,” “API access requires auth under separate Developer Terms”) Every permission check generates a cryptographic compliance receipt (ORS) for audit trails Works as a LangChain tool, guard, or callback handler We studied 400 services’ Terms of Service and found that automated ToS interpretation is only 50% accurate for the three permissions that matter most (scraping, API access, AI training). A structured lookup replaces unreliable text parsing. A public registry of 511 services is already seeded. The LangChain integration provides three patterns: OpenTermsGuard : wraps any web tool with a permission gate. Denied actions return a message instead of executing. OpenTermsChecker : standalone tool the agent can call to query permissions before deciding what to do. OpenTermsCallbackHandler : passive observer that logs permission checks without blocking. 25 tests passing. No dependencies beyond langchain-core and requests. MIT licensed. SDK: pip install openterms-py LangChain integration: pip install langchain-openterms Repo: https://github.com/jstibal/langchain-openterms Protocol docs: https://openterms.com/docs Registry (511 services): https://github.com/jstibal/openterms-registry-seed 1 post - 1 participant Read full topic