Files
wehub-resource-sync 7a0da7932b
Backwards Compatibility / Verify Encryption Constants (push) Waiting to run
Backwards Compatibility / PyPI Version Compatibility (push) Waiting to run
Backwards Compatibility / Database Migration Tests (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-form] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-metrics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-workflow] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [history-news] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [library] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [link-analytics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [mobile] (push) Blocked by required conditions
Docker Tests (Consolidated) / detect-changes (push) Waiting to run
Docker Tests (Consolidated) / Build Test Image (push) Waiting to run
Docker Tests (Consolidated) / All Pytest Tests + Coverage (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [accessibility] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [api-crud] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-login] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-register] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-lifecycle] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [error-benchmark] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) (push) Blocked by required conditions
Docker Tests (Consolidated) / Accessibility Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Unit Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Example Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / Production Image Smoke Test (push) Blocked by required conditions
Docker Tests (Consolidated) / Infrastructure Tests (push) Blocked by required conditions
OSSF Scorecard / OSSF Security Scorecard Analysis (push) Waiting to run
OSV-Scanner (Scheduled) / scan-scheduled (push) Failing after 0s
Create Release / test-gate (push) Has been cancelled
Create Release / release-gate (push) Has been cancelled
Create Release / ci-gate (push) Has been cancelled
Create Release / version-check (push) Has been cancelled
Create Release / e2e-test-gate (push) Has been cancelled
Create Release / responsive-test-gate (push) Has been cancelled
Create Release / compat-test-gate (push) Has been cancelled
Create Release / compose-integration-gate (push) Has been cancelled
Create Release / vulture-gate (push) Has been cancelled
Create Release / build (push) Has been cancelled
Create Release / provenance (push) Has been cancelled
Create Release / prerelease-docker (push) Has been cancelled
Create Release / publish-docker (push) Has been cancelled
Create Release / create-release (push) Has been cancelled
Create Release / cleanup-changelog (push) Has been cancelled
Create Release / trigger-pypi (push) Has been cancelled
Create Release / monitor-pypi (push) Has been cancelled
Create Release / Clean up orphan prerelease tags and signatures (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:08:55 +08:00

98 lines
3.0 KiB
Python

#!/usr/bin/env python3
"""
Minimal working example for programmatic access to Local Deep Research.
This shows how to use the core functionality without database dependencies.
"""
from langchain_ollama import ChatOllama
from local_deep_research.search_system import AdvancedSearchSystem
# Re-enable logging after import (it gets disabled in __init__.py)
from loguru import logger
import sys
logger.remove()
# diagnose=False: loguru defaults to True, which renders repr() of every
# local in every traceback frame on exception. Users copy this snippet
# into their own scripts, so leaving the default on would propagate the
# credential-in-traceback leak (#4185) wherever the snippet lands.
logger.add(
sys.stderr,
level="WARNING",
format="{time} {level} {message}",
diagnose=False,
)
logger.enable("local_deep_research")
class MinimalSearchEngine:
"""Minimal search engine that returns hardcoded results."""
def __init__(self, settings_snapshot=None):
self.settings_snapshot = settings_snapshot or {}
def run(self, query, research_context=None):
"""Return some fake search results."""
return [
{
"title": "Introduction to AI",
"link": "https://example.com/ai-intro",
"snippet": "Artificial Intelligence (AI) is the simulation of human intelligence...",
"full_content": "Full article about AI basics...",
"rank": 1,
},
{
"title": "Machine Learning Explained",
"link": "https://example.com/ml-explained",
"snippet": "Machine learning is a subset of AI that enables systems to learn...",
"full_content": "Detailed explanation of machine learning...",
"rank": 2,
},
]
def main():
"""Minimal example of programmatic access."""
print("=== Minimal Local Deep Research Example ===\n")
# 1. Create LLM
print("1. Creating Ollama LLM...")
llm = ChatOllama(model="gemma3:12b")
# 2. Create minimal search engine
print("2. Creating minimal search engine...")
# Settings for search system (without programmatic_mode)
settings = {
"search.iterations": 1,
"search.strategy": "direct",
}
search = MinimalSearchEngine(settings)
# 3. Create search system
print("3. Creating AdvancedSearchSystem...")
# IMPORTANT: Pass programmatic_mode=True to avoid database dependencies
system = AdvancedSearchSystem(
llm=llm,
search=search,
settings_snapshot=settings,
programmatic_mode=True,
)
# 4. Run a search
print("\n4. Running search...")
result = system.analyze_topic("What is artificial intelligence?")
# 5. Show results
print("\n=== RESULTS ===")
print(f"Found {len(result['findings'])} findings")
print(f"\nSummary:\n{result['current_knowledge']}")
print("\n✓ Success! Programmatic access works without database.")
if __name__ == "__main__":
main()