mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-26 09:16:21 +02:00
feat: min_token_count=10k
This commit is contained in:
parent
cd8bd28216
commit
a9d0ab27e8
1 changed files with 2 additions and 2 deletions
|
|
@ -30,8 +30,8 @@ class IndexRepo(BaseModel):
|
|||
root_path: str
|
||||
fingerprint_filename: str = "fingerprint.json"
|
||||
model: Optional[str] = None
|
||||
min_token_count: int = 5000
|
||||
max_token_count: int = 100000
|
||||
min_token_count: int = 10000
|
||||
max_token_count: int = 100000000
|
||||
recall_count: int = 5
|
||||
embedding: Optional[BaseEmbedding] = Field(default=None, exclude=True)
|
||||
fingerprints: Dict[str, str] = Field(default_factory=dict)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue