Merge pull request #45 from ggozad/chore/deps-update
Dependencies update
This commit is contained in:
commit
16fcab60e4
4 changed files with 134 additions and 537 deletions
|
|
@ -1 +1 @@
|
|||
3.11
|
||||
3.12
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ description = "Retrieval Augmented Generation (RAG) with LanceDB"
|
|||
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
|
||||
license = { text = "MIT" }
|
||||
readme = { file = "README.md", content-type = "text/markdown" }
|
||||
requires-python = ">=3.11"
|
||||
requires-python = ">=3.12"
|
||||
keywords = ["RAG", "lancedb", "vector-database", "ml", "mcp"]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
|
|
@ -22,17 +22,17 @@ classifiers = [
|
|||
]
|
||||
|
||||
dependencies = [
|
||||
"docling>=2.15.0",
|
||||
"docling>=2.49.0",
|
||||
"fastmcp>=2.8.1",
|
||||
"httpx>=0.28.1",
|
||||
"lancedb>=0.17.0",
|
||||
"lancedb>=0.24.3",
|
||||
"ollama>=0.5.3",
|
||||
"pydantic>=2.11.7",
|
||||
"pydantic-ai>=0.7.2",
|
||||
"pydantic-ai>=0.8.1",
|
||||
"python-dotenv>=1.1.0",
|
||||
"rich>=14.0.0",
|
||||
"tiktoken>=0.9.0",
|
||||
"typer>=0.16.0",
|
||||
"rich>=14.1.0",
|
||||
"tiktoken>=0.11.0",
|
||||
"typer>=0.16.1",
|
||||
"watchfiles>=1.1.0",
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,10 @@ import logging
|
|||
from rich.console import Console
|
||||
from rich.logging import RichHandler
|
||||
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
logging.getLogger("httpx").setLevel(logging.WARNING)
|
||||
logging.getLogger("httpcore").setLevel(logging.WARNING)
|
||||
|
||||
|
||||
def get_logger() -> logging.Logger:
|
||||
logger = logging.getLogger("haiku.rag")
|
||||
|
|
|
|||
Loading…
Reference in a new issue