Skip to content

Commit 5126292

Browse files
committed
interface testing updates
1 parent 434523b commit 5126292

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.yaml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ search:
2424
scraping:
2525
enabled: false # Enable full text scraping of found pages
2626
max_pages: 5 # Maximum pages to scrape per search
27-
content_limit: 1500 # Character limit for full content per source
27+
content_limit: 3500 # Character limit for full content per source
2828

2929
# Execution Settings
3030
execution:

sgr_deep_research/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class ScrapingConfig(BaseModel):
4343

4444
enabled: bool = Field(default=False, description="Enable full text scraping")
4545
max_pages: int = Field(default=5, gt=0, description="Maximum pages to scrape")
46-
content_limit: int = Field(default=1500, gt=0, description="Content character limit per source")
46+
content_limit: int = Field(default=3500, gt=0, description="Content character limit per source")
4747

4848

4949
class PromptsConfig(BaseModel):

0 commit comments

Comments
 (0)