Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions python/packages/autogen-ext/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ http-tool = [
"json-schema-to-pydantic>=0.2.0"
]

crw = [
"httpx>=0.27.0",
]

semantic-kernel-all = [
"semantic-kernel[google,hugging_face,mistralai,ollama,onnx,anthropic,usearch,pandas,aws,dapr]>=1.17.1",
]
Expand Down
19 changes: 19 additions & 0 deletions python/packages/autogen-ext/src/autogen_ext/tools/crw/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from ._crw_tools import (
CrwCrawlTool,
CrwMapTool,
CrwScrapeTool,
CrawlResult,
CrawlStatusResult,
MapResult,
ScrapeResult,
)

__all__ = [
"CrwCrawlTool",
"CrwMapTool",
"CrwScrapeTool",
"CrawlResult",
"CrawlStatusResult",
"MapResult",
"ScrapeResult",
]
Loading
Loading