Update cool_agent.py
Browse files- cool_agent.py +2 -0
cool_agent.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
import os
|
| 2 |
from linkup_utils import LinkupSearchTool
|
|
|
|
| 3 |
from text_inspector_tool import TextInspectorTool
|
| 4 |
from langchain_community.document_loaders import WikipediaLoader
|
| 5 |
from text_web_browser import (
|
|
@@ -95,6 +96,7 @@ def create_agent(model_id="gpt-4o-mini"):
|
|
| 95 |
# FindNextTool(browser),
|
| 96 |
# ArchiveSearchTool(browser),
|
| 97 |
text_inspection_tool,
|
|
|
|
| 98 |
]
|
| 99 |
search_agent = ToolCallingAgent(
|
| 100 |
model=model,
|
|
|
|
| 1 |
import os
|
| 2 |
from linkup_utils import LinkupSearchTool
|
| 3 |
+
from youtube_utils import YouTubeTranscriptTool
|
| 4 |
from text_inspector_tool import TextInspectorTool
|
| 5 |
from langchain_community.document_loaders import WikipediaLoader
|
| 6 |
from text_web_browser import (
|
|
|
|
| 96 |
# FindNextTool(browser),
|
| 97 |
# ArchiveSearchTool(browser),
|
| 98 |
text_inspection_tool,
|
| 99 |
+
YouTubeTranscriptTool(),
|
| 100 |
]
|
| 101 |
search_agent = ToolCallingAgent(
|
| 102 |
model=model,
|