refactor: move rag package to lib/core and extract standalone utilities

This commit is contained in:
Greyson Lalonde
2025-09-27 16:31:54 -04:00
parent 1d1f5f455c
commit aca826c553
120 changed files with 360 additions and 87 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "crewai-tools"
version = "0.75.0"
dynamic = ["version"]
description = "Set of tools for the crewAI framework"
readme = "README.md"
authors = [
@@ -8,11 +8,11 @@ authors = [
]
requires-python = ">=3.10, <3.14"
dependencies = [
"crewai-core",
"lancedb>=0.5.4",
"pytube>=15.0.0",
"requests>=2.31.0",
"docker>=7.1.0",
"crewai",
"lancedb>=0.5.4",
"tiktoken>=0.8.0",
"stagehand>=0.4.1",
@@ -145,3 +145,9 @@ contextual = [
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/crewai_tools/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/tools"]

View File

@@ -96,3 +96,6 @@ from .tools import (
ZapierActionTools,
ParallelSearchTool,
)
__version__ = "1.0.0a0"

View File