Skip to content

Commit 3206b29

Browse files
committed
asdf
1 parent 6854b7f commit 3206b29

4 files changed

Lines changed: 112 additions & 4 deletions

File tree

.github/workflows/retrieval-chain.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
name: Retrieval Chain CI/CD
1+
name: Integration testing
22

33
on:
44
push:
55
branches: [ main, develop ]
6-
paths:
7-
- 'samples/retrieval-chain/**'
86
pull_request:
97
branches: [ main ]
108

samples/company-research-agent/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
if os.getenv("TAVILY_API_KEY"):
1212
tool = TavilySearchResults(max_results=5)
1313
else:
14-
tool = DuckDuckGoSearchResults(max_results=5)
14+
tool = DuckDuckGoSearchResults()
1515

1616
# Define system prompt
1717
system_prompt = """You are an advanced AI assistant specializing in corporate research and outreach strategy development. Your primary functions are:

samples/company-research-agent/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ dependencies = [
1111
"tavily-python>=0.5.0",
1212
"uipath-langchain==0.0.113",
1313
"uipath>=2.0.72",
14+
"duckduckgo-search>=8.1.1",
15+
"langchain-community>=0.3.21",
1416
]
1517

1618
[project.optional-dependencies]

0 commit comments

Comments
 (0)