-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(engine): Add log indexer and vectordb engines
- Loading branch information
Showing
5 changed files
with
189 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,7 @@ description = "" | |
readme = "README.md" | ||
requires-python = ">=3.12" | ||
license = "Apache-2.0" | ||
authors = [ | ||
{ name = "Tracecat", email = "[email protected]" }, | ||
] | ||
authors = [{ name = "Tracecat", email = "[email protected]" }] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: Apache Software License", | ||
|
@@ -24,15 +22,17 @@ classifiers = [ | |
"Topic :: System :: Systems Administration", | ||
] | ||
dependencies = [ | ||
"colorlog", | ||
"fastapi", | ||
"sqlmodel", | ||
"uvicorn", | ||
"pydantic==2.6.1", | ||
"lancedb", | ||
"openai", | ||
"polars", | ||
"pydantic==2.6.1", | ||
"python-slugify", | ||
"sqlmodel", | ||
"tantivy", | ||
"tenacity", | ||
"colorlog", | ||
"orjson", | ||
"python-slugify" | ||
"uvicorn", | ||
] | ||
dynamic = ["version"] | ||
|
||
|
@@ -47,12 +47,9 @@ runner = [ | |
"python-multipart", | ||
"jsonpath_ng", | ||
"yagmail[all]", | ||
"aiosmtplib" | ||
] | ||
dev = [ | ||
"pytest", | ||
"python-dotenv", | ||
"aiosmtplib", | ||
] | ||
dev = ["pytest", "python-dotenv"] | ||
|
||
[tool.hatch.version] | ||
path = "tracecat/__init__.py" | ||
|
@@ -70,13 +67,13 @@ select = [ | |
"F", # pyflakes | ||
"I", # isort | ||
"B", # flake8-bugbear | ||
"C4", # flake8-comprehensions | ||
"UP", # pyupgrade | ||
"C4", # flake8-comprehensions | ||
"UP", # pyupgrade | ||
] | ||
ignore = [ | ||
"E501", # line too long, handled by ruff | ||
"B008", # do not perform function calls in argument defaults | ||
"W191", # indentation contains tabs | ||
"E501", # line too long, handled by ruff | ||
"B008", # do not perform function calls in argument defaults | ||
"W191", # indentation contains tabs | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.