Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasecchig committed Sep 17, 2024
1 parent 285e63f commit aad05ff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ Testables
Tetsuo
Tianli
Topolino
Traceloop
Trapp
Tribbiani
Tricyle
Expand Down Expand Up @@ -545,6 +546,7 @@ timechart
titlebar
toself
tqdm
traceloop
tritan
ubuntu
unigram
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ A pythonic RAG (Retrieval-Augmented Generation) chain designed for maximum flexi
- Document retrieval and ranking
- LLM-based response generation

### 3. Langgraph Dummy Agent
### 3. LangGraph Dummy Agent

A simple agent implemented using Langgraph, a framework for building agent and multi-agent workflows.
A simple agent implemented using LangGraph, a framework for building agent and multi-agent workflows.

### Switching Between Patterns

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# Custom RAG QA
# from app.patterns.custom_rag_qa.chain import chain

# Langgraph dummy agent
# LangGraph dummy agent
# from app.patterns.langgraph_dummy_agent.chain import chain

# The events that are supported by the UI Frontend
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
from langchain_core.messages import AIMessageChunk
import pytest

CHAIN_NAME = "Langgraph agent"
CHAIN_NAME = "LangGraph agent"


@pytest.mark.asyncio
async def test_langgraph_chain_astream_events() -> None:
"""
Integration testing example for the default Langgraph agent chain. We assert that the chain returns
Integration testing example for the default LangGraph agent chain. We assert that the chain returns
events, containing AIMessageChunks.
"""
user_message = {"role": "user", "content": f"Test message for {CHAIN_NAME} chain"}
Expand Down

0 comments on commit aad05ff

Please sign in to comment.