Skip to content

Commit 64cad61

Browse files
bsboddenrbs333justin-cechmanek
authored
Add agentic examples (#37)
* Add agentic examples --------- Co-authored-by: Robert Shelton <[email protected]> Co-authored-by: Justin Cechmanek <[email protected]>
1 parent cfe6c50 commit 64cad61

File tree

7 files changed

+3503
-3122
lines changed

7 files changed

+3503
-3122
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
GCP_REGION: ${{ secrets.GCP_REGION }}
5151
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
5252
run: |
53-
pytest --verbose --nbval-lax python-recipes/RAG/ python-recipes/vector-search python-recipes/redis-intro python-recipes/recommendation-systems --ignore python-recipes/RAG/05_nvidia_ai_rag_redis.ipynb --ignore python-recipes/semantic-cache/doc2cache_llama3_1.ipynb
53+
pytest --verbose --nbval-lax python-recipes/RAG/ python-recipes/vector-search python-recipes/redis-intro python-recipes/recommendation-systems python-recipes/agents --ignore python-recipes/agents/01_crewai_langgraph_redis.ipynb --ignore python-recipes/RAG/05_nvidia_ai_rag_redis.ipynb --ignore python-recipes/semantic-cache/doc2cache_llama3_1.ipynb

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.env
2-
node_modules/
2+
node_modules/
3+
.DS_Store

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,13 @@ For further insights on enhancing RAG applications with dense content representa
9494
| --- | --- |
9595
[/RAG/04_advanced_redisvl.ipynb](python-recipes/RAG/04_advanced_redisvl.ipynb) | Notebook for additional tips and techniques to improve RAG quality |
9696

97+
## Agents
98+
/Users/robert.shelton/Documents/redis-ai-resources/python-recipes/agents/01_crewai_langgraph_redis.ipynb
99+
| Recipe | Description |
100+
| --- | --- |
101+
[/agents/00_langgraph_redis_agentic_rag.ipynb](python-recipes/agents/00_langgraph_redis_agentic_rag.ipynb) | Notebook to get started with lang-graph and agents |
102+
[/agents/01_crewai_langgraph_redis.ipynb](python-recipes/agents/01_crewai_langgraph_redis.ipynb) | Notebook to get started with lang-graph and agents |
103+
97104
## Recommendation systems
98105

99106
| Recipe | Description |

python-recipes/agents/00_langgraph_redis_agentic_rag.ipynb

Lines changed: 676 additions & 0 deletions
Large diffs are not rendered by default.

python-recipes/agents/01_crewai_langgraph_redis.ipynb

Lines changed: 1112 additions & 0 deletions
Large diffs are not rendered by default.

python-recipes/recommendation-systems/01_collaborative_filtering.ipynb

Lines changed: 1702 additions & 3120 deletions
Large diffs are not rendered by default.

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
openai
44
tiktoken
55
langchain
6+
langgraph
7+
langchainhub
8+
langchain-text-splitters
69
langchain-openai
710
langchain-redis
811
langchain-huggingface

0 commit comments

Comments
 (0)