You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/auth0-ai-langchain/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ pip install auth0-ai-langchain
16
16
17
17
`Auth0AI` uses CIBA (Client-Initiated Backchannel Authentication) to handle user confirmation asynchronously. This is useful when you need to confirm a user action before proceeding with a tool execution.
18
18
19
-
Full Example of [Async Authorization](https://github.com/auth0-lab/auth0-ai-python/tree/main/examples/async-authorization/langchain-examples).
19
+
Full Example of [Async Authorization](https://github.com/auth0/auth0-ai-python/tree/main/examples/async-authorization/langchain-examples).
20
20
21
21
1. Define a tool with the proper authorizer specifying a function to resolve the user id:
22
22
@@ -96,7 +96,7 @@ For more information on setting up RAR with CIBA, refer to:
96
96
97
97
The `FGAAuthorizer` can leverage Okta FGA to authorize tools executions. The `FGAAuthorizer.create` function can be used to create an authorizer that checks permissions before executing the tool.
98
98
99
-
Full example of [Authorization for Tools](https://github.com/auth0-lab/auth0-ai-python/tree/main/examples/authorization-for-tools/langchain-examples).
99
+
Full example of [Authorization for Tools](https://github.com/auth0/auth0-ai-python/tree/main/examples/authorization-for-tools/langchain-examples).
100
100
101
101
1. Create an instance of FGA Authorizer:
102
102
@@ -155,7 +155,7 @@ buy_tool = StructuredTool(
155
155
156
156
The `Auth0AI.with_token_vault` function exchanges user's refresh token taken, by default, from the runnable configuration (`config.configurable._credentials.refresh_token`) for a Token Vault access token that is valid to call a third-party API.
157
157
158
-
Full Example of [Calling APIs On User's Behalf](https://github.com/auth0-lab/auth0-ai-python/tree/main/examples/calling-apis/langchain-examples).
158
+
Full Example of [Calling APIs On User's Behalf](https://github.com/auth0/auth0-ai-python/tree/main/examples/calling-apis/langchain-examples).
159
159
160
160
1. Define a tool with the proper authorizer:
161
161
@@ -215,7 +215,7 @@ workflow = (
215
215
216
216
The `FGARetriever` can be used to filter documents based on access control checks defined in Okta FGA. This retriever performs batch checks on retrieved documents, returning only the ones that pass the specified access criteria.
217
217
218
-
Full Example of [RAG Application](https://github.com/auth0-lab/auth0-ai-python/tree/main/examples/authorization-for-rag/langchain-examples).
218
+
Full Example of [RAG Application](https://github.com/auth0/auth0-ai-python/tree/main/examples/authorization-for-rag/langchain-examples).
219
219
220
220
Create a retriever instance using the `FGARetriever` class.
221
221
@@ -330,4 +330,4 @@ resumer.start()
330
330
</p>
331
331
<palign="center">Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <ahref="https://auth0.com/why-auth0">Why Auth0?</a></p>
332
332
<palign="center">
333
-
This project is licensed under the Apache 2.0 license. See the <ahref="https://github.com/auth0-lab/auth0-ai-python/blob/main/LICENSE"> LICENSE</a> file for more info.</p>
333
+
This project is licensed under the Apache 2.0 license. See the <ahref="https://github.com/auth0/auth0-ai-python/blob/main/LICENSE"> LICENSE</a> file for more info.</p>
Copy file name to clipboardExpand all lines: packages/auth0-ai-llamaindex/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ pip install auth0-ai-llamaindex
16
16
17
17
`Auth0AI` uses CIBA (Client Initiated Backchannel Authentication) to handle user confirmation asynchronously. This is useful when you need to confirm a user action before proceeding with a tool execution.
18
18
19
-
Full Example of [Async Authorization](https://github.com/auth0-lab/auth0-ai-python/tree/main/examples/async-authorization/llama-index-examples).
19
+
Full Example of [Async Authorization](https://github.com/auth0/auth0-ai-python/tree/main/examples/async-authorization/llama-index-examples).
20
20
21
21
Define a tool with the proper authorizer specifying a function to resolve the user id:
22
22
@@ -96,7 +96,7 @@ For more information on setting up RAR with CIBA, refer to:
96
96
97
97
The `FGAAuthorizer` can leverage Okta FGA to authorize tools executions. The `FGAAuthorizer.create` function can be used to create an authorizer that checks permissions before executing the tool.
98
98
99
-
Full Example of [Authorization for Tools](https://github.com/auth0-lab/auth0-ai-python/tree/main/examples/authorization-for-tools/llama-index-examples).
99
+
Full Example of [Authorization for Tools](https://github.com/auth0/auth0-ai-python/tree/main/examples/authorization-for-tools/llama-index-examples).
The `Auth0AI.with_token_vault` function exchanges user's refresh token for a Token Vault access token with the third-party.
154
154
155
-
Full Example of [Calling APIs On User's Behalf](https://github.com/auth0-lab/auth0-ai-python/tree/main/examples/calling-apis/llama-index-examples).
155
+
Full Example of [Calling APIs On User's Behalf](https://github.com/auth0/auth0-ai-python/tree/main/examples/calling-apis/llama-index-examples).
156
156
157
157
Define a tool with the proper authorizer specifying a function to resolve the user's refresh token:
158
158
@@ -193,7 +193,7 @@ set_ai_context("<thread-id>")
193
193
194
194
The `FGARetriever` can be used to filter documents based on access control checks defined in Okta FGA. This retriever performs batch checks on retrieved documents, returning only the ones that pass the specified access criteria.
195
195
196
-
Full Example of [RAG Application](https://github.com/auth0-lab/auth0-ai-python/tree/main/examples/authorization-for-rag/llama-index-examples).
196
+
Full Example of [RAG Application](https://github.com/auth0/auth0-ai-python/tree/main/examples/authorization-for-rag/llama-index-examples).
197
197
198
198
```python
199
199
from llama_index.core import VectorStoreIndex, Document
@@ -248,4 +248,4 @@ print(response)
248
248
</p>
249
249
<palign="center">Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <ahref="https://auth0.com/why-auth0">Why Auth0?</a></p>
250
250
<palign="center">
251
-
This project is licensed under the Apache 2.0 license. See the <ahref="https://github.com/auth0-lab/auth0-ai-python/blob/main/LICENSE"> LICENSE</a> file for more info.</p>
251
+
This project is licensed under the Apache 2.0 license. See the <ahref="https://github.com/auth0/auth0-ai-python/blob/main/LICENSE"> LICENSE</a> file for more info.</p>
Copy file name to clipboardExpand all lines: packages/auth0-ai/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,4 +25,4 @@ pip install auth0-ai
25
25
</p>
26
26
<palign="center">Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout <ahref="https://auth0.com/why-auth0">Why Auth0?</a></p>
27
27
<palign="center">
28
-
This project is licensed under the Apache 2.0 license. See the <ahref="https://github.com/auth0-lab/auth0-ai-python/blob/main/LICENSE"> LICENSE</a> file for more info.</p>
28
+
This project is licensed under the Apache 2.0 license. See the <ahref="https://github.com/auth0/auth0-ai-python/blob/main/LICENSE"> LICENSE</a> file for more info.</p>
0 commit comments