mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 23:22:57 +01:00
added window_size setting for ingestion
This commit is contained in:
parent
6af9fb8b42
commit
def2b7f71f
3 changed files with 8 additions and 2 deletions
|
|
@ -120,6 +120,10 @@ class LLMSettings(BaseModel):
|
|||
|
||||
class VectorstoreSettings(BaseModel):
|
||||
database: Literal["chroma", "qdrant", "postgres"]
|
||||
inject_win_size: int = Field(
|
||||
3,
|
||||
description="How many sentences on either side to capture, when parsing files",
|
||||
)
|
||||
|
||||
|
||||
class NodeStoreSettings(BaseModel):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue