Skip to content

Commit 1e13d0e

Browse files
authored
Merge branch 'main' into rahul/max-concurrency-map-reduce
2 parents 010a265 + f73ca42 commit 1e13d0e

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

src/oss/langchain-agent-auth.mdx renamed to src/langgraph-platform/agent-auth.mdx

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
---
2-
title: LangChain Agent Auth
2+
title: Agent Auth
33
---
4-
LangChain Agent Auth enables secure access from agents to any other system using OAuth 2.0 credentials. With LangChain Agent Auth, build your agents to securely connect to any system on a person's behalf.
5-
6-
## Overview
7-
8-
LangChain Agent Auth solves the challenge of secure authentication for autonomous agents. Instead of embedding credentials in agent code or requiring manual intervention for each API call, agents use the OAuth flow to obtain time-limited access tokens for external services. The system includes an authentication server for managing OAuth flows and storing credentials, as well as a Python client SDK for integrating with agents.
9-
4+
Agent Auth enables secure access from agents to any other system using OAuth 2.0 credentials. With Agent Auth, build your agents to securely connect to any system on a person's behalf.
105

116
## Installation
127

13-
The client library is not yet publicly available. To request access, please reach out to LangChain support at [email protected]. The package will be released on PyPI soon.
8+
Install the Agent Auth client library from PyPI:
9+
10+
```bash
11+
pip install langchain-auth
12+
```
1413

1514

1615
## Quickstart
@@ -36,8 +35,6 @@ github_provider = await client.create_oauth_provider(
3635
client_secret="your-github-client-secret",
3736
auth_url="https://github.com/login/oauth/authorize",
3837
token_url="https://github.com/login/oauth/access_token",
39-
user_info_url="https://api.github.com/user",
40-
scopes=["repo"] # Provide one or more scopes you would like to be available for this provider
4138
)
4239
```
4340

0 commit comments

Comments
 (0)