Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion langchain-crash-course/4_rag/logs/rag_application.log
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@
2025-08-26 23:24:09,222 - 8_rag_web_scrape_firecrawl.py - INFO - Querying vector store 'chroma_db_web_scrape_firecrawl'...
2025-08-26 23:24:09,222 - 8_rag_web_scrape_firecrawl.py - INFO - Vector store 'chroma_db_web_scrape_firecrawl' already exists. No need to initialize.
2025-08-26 23:24:10,098 - 8_rag_web_scrape_firecrawl.py - INFO - Relevant documents retrieved successfully.
2025-08-26 23:45:35,451 - 8_rag_web_scrape_firecrawl.py - INFO - User exited conversation
2025-08-26 23:45:35,451 - 8_rag_web_scrape_firecrawl.py - INFO - User exited conversation
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,7 @@ def test_tools_list_contains_current_time(agent_module):
assert isinstance(tools, list)
# Find tool by name
names = [tool.name for tool in tools]
assert "Current Time" in names, f"Tool 'Current Time' not found in {names}"
# assert "Current" in names, (
# f"Tool 'Current Time' not found in {names}"
# ) # pytest fails can also confirm on Github Actions
assert "Time" in names, f"Tool 'Time' not found in {names}"


def test_module_import_with_missing_llm(monkeypatch):
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pytest==8.3.5
langchain-community==0.3.15
langchain-ollama==0.2.3
langchain-openai==0.3.1
langchain-openai==0.3.1
aioconsole==0.8.1