mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-22 03:13:00 +03:00
c7b4415792
🤖 I have created a release *beep* *boop* --- ## [0.0.24](https://github.com/QuivrHQ/quivr/compare/core-0.0.23...core-0.0.24) (2024-11-14) ### Features * kms-migration ([#3446](https://github.com/QuivrHQ/quivr/issues/3446)) ([1356d87
](1356d87098
)) * **megaparse:** add sdk ([#3462](https://github.com/QuivrHQ/quivr/issues/3462)) ([190d971
](190d971bd7
)) ### Bug Fixes * added chunk_size in tika processor ([#3466](https://github.com/QuivrHQ/quivr/issues/3466)) ([063bbd3
](063bbd323d
)) * modify megaparse strategy ([#3474](https://github.com/QuivrHQ/quivr/issues/3474)) ([da97b2c
](da97b2cf14
)) * supported extensions for megaparse ([#3477](https://github.com/QuivrHQ/quivr/issues/3477)) ([72b979d
](72b979d4e4
)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
69 lines
1.7 KiB
TOML
69 lines
1.7 KiB
TOML
[project]
|
|
name = "quivr-core"
|
|
version = "0.0.24"
|
|
description = "Quivr core RAG package"
|
|
authors = [
|
|
{ name = "Stan Girard", email = "stan@quivr.app" }
|
|
]
|
|
dependencies = [
|
|
"pydantic>=2.8.2",
|
|
"langchain-core>=0.2.38",
|
|
"langchain>=0.2.14,<0.3.0",
|
|
"langgraph>=0.2.38",
|
|
"httpx>=0.27.0",
|
|
"rich>=13.7.1",
|
|
"tiktoken>=0.7.0",
|
|
"aiofiles>=23.1.0",
|
|
"langchain-openai>=0.1.0",
|
|
"langchain-cohere>=0.1.0",
|
|
"langchain-community>=0.2.12",
|
|
"langchain-anthropic>=0.1.23",
|
|
"types-pyyaml>=6.0.12.20240808",
|
|
"transformers[sentencepiece]>=4.44.2",
|
|
"faiss-cpu>=1.8.0.post1",
|
|
"rapidfuzz>=3.10.1",
|
|
"markupsafe>=2.1.5",
|
|
"megaparse[all]== 0.0.43",
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.11"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.rye]
|
|
managed = true
|
|
dev-dependencies = [
|
|
"mypy>=1.11.1",
|
|
"pre-commit>=3.8.0",
|
|
"ipykernel>=6.29.5",
|
|
"ruff>=0.6.1",
|
|
"flake8>=7.1.1",
|
|
"flake8-black>=0.3.6",
|
|
"pytest-asyncio>=0.23.8",
|
|
"pytest>=8.3.2",
|
|
"pytest-xdist>=3.6.1",
|
|
"pytest-benchmark>=4.0.0",
|
|
]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["quivr_core"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--tb=short -ra -v"
|
|
filterwarnings = ["ignore::DeprecationWarning"]
|
|
markers = [
|
|
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
|
|
"base: these tests require quivr-core with extra `base` to be installed",
|
|
"tika: these tests require a tika server to be running",
|
|
"unstructured: these tests require `unstructured` dependency",
|
|
]
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "yaml"
|
|
ignore_missing_imports = true
|