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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
B
Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
L
LangChain Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题

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)
Machine-Readable Permissions for Web-Interacting Agents
jstibal · 2026-04-20 · via LangChain Forum - Latest topics
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