Skip to content

Commit 5309045

Browse files
author
Stefan Milosavljevic
committed
fix: added missing dependency and default to local deployment
1 parent c617404 commit 5309045

3 files changed

Lines changed: 107 additions & 4 deletions

File tree

aikg/config/chroma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class ChromaConfig(BaseModel):
3838
If set to client-only mode, local path where the db is saved.
3939
"""
4040

41-
host: str = os.environ.get("CHROMA_HOST", "127.0.0.1")
41+
host: str = os.environ.get("CHROMA_HOST", "local")
4242
port: int = int(os.environ.get("CHROMA_PORT", "8000"))
4343
collection_name: str = os.environ.get("CHROMA_COLLECTION", "schema")
4444
collection_examples: str = os.environ.get("CHROMA_EXAMPLES", "examples")

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ dependencies = [
2929
"testcontainers<4.0.0,>=3.7.1",
3030
"torch==2.6.0+cpu",
3131
"torchvision==0.21.0+cpu",
32+
"langchain-community>=0.3.17",
3233
]
3334
name = "aikg"
3435
version = "0.1.0"

uv.lock

Lines changed: 105 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)