Skip to content

Commit df4b024

Browse files
committed
Fix 201 nb
1 parent ee08696 commit df4b024

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

recipes/quickstart/agents/Agents_101/Tool_Calling_201.ipynb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
"\n",
1313
"- Step 1: Take the user input query \n",
1414
"\n",
15-
"- Step 2: Perform an internet search to fetch the arxiv ID(s) based on the user query\n",
15+
"- Step 2: Perform an internet search using `tavily` API to fetch the arxiv ID(s) based on the user query\n",
16+
"\n",
17+
"Note: `3.1` models support `brave_search` but this notebook is also aimed at showcasing custom tools. \n",
1618
"\n",
1719
"The above is important because many-times the user-query is different from the paper name and arxiv ID-this will help us with the next step\n",
1820
"\n",
@@ -446,7 +448,7 @@
446448
"source": [
447449
"#### Downloading the papers and extracting details: \n",
448450
"\n",
449-
"3.1 family LLM(s) are great enough to use raw outputs extracted from a PDF and summarise them. However, we are still bound by their (great) 128k context length-to live with this, we will extract just the first 80k words. \n",
451+
"Llama 3.1 family LLM(s) are great enough to use raw outputs extracted from a PDF and summarise them. However, we are still bound by their (great) 128k context length-to live with this, we will extract just the first 80k words. \n",
450452
"\n",
451453
"The functions below handle the logic of downloading the PDF(s) and extracting their outputs"
452454
]

0 commit comments

Comments
 (0)