├── README.md ├── imgs ├── demo.gif ├── demo.mp4 └── logo.png ├── pyproject.toml ├── reports ├── company_report_20250201_145543.html ├── company_report_20250201_145543.pdf ├── company_report_20250201_151244.html ├── company_report_20250201_151244.pdf ├── company_report_20250201_152545.html ├── company_report_20250201_152545.pdf ├── company_report_20250201_153224.html ├── company_report_20250201_153224.pdf ├── company_report_20250201_153917.html └── company_report_20250201_153917.pdf ├── src └── company_researcher │ ├── __init__.py │ ├── cli.py │ ├── config.py │ ├── main.py │ ├── models │ ├── __init__.py │ ├── models.py │ ├── report.py │ └── response.py │ ├── modules │ ├── __init__.py │ ├── ai │ │ ├── __init__.py │ │ └── llm.py │ ├── apis │ │ ├── __init__.py │ │ └── lot_funding.py │ └── prompts │ │ ├── __init__.py │ │ ├── career_generator.py │ │ ├── company_description.py │ │ └── page_type.py │ ├── reports │ ├── pdf_generator.py │ └── templates │ │ └── report.html │ └── scrapers │ ├── __init__.py │ ├── parser.py │ ├── scraper.py │ └── worker.py └── uv.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/README.md -------------------------------------------------------------------------------- /imgs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/imgs/demo.gif -------------------------------------------------------------------------------- /imgs/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/imgs/demo.mp4 -------------------------------------------------------------------------------- /imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/imgs/logo.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reports/company_report_20250201_145543.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_145543.html -------------------------------------------------------------------------------- /reports/company_report_20250201_145543.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_145543.pdf -------------------------------------------------------------------------------- /reports/company_report_20250201_151244.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_151244.html -------------------------------------------------------------------------------- /reports/company_report_20250201_151244.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_151244.pdf -------------------------------------------------------------------------------- /reports/company_report_20250201_152545.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_152545.html -------------------------------------------------------------------------------- /reports/company_report_20250201_152545.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_152545.pdf -------------------------------------------------------------------------------- /reports/company_report_20250201_153224.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_153224.html -------------------------------------------------------------------------------- /reports/company_report_20250201_153224.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_153224.pdf -------------------------------------------------------------------------------- /reports/company_report_20250201_153917.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_153917.html -------------------------------------------------------------------------------- /reports/company_report_20250201_153917.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/reports/company_report_20250201_153917.pdf -------------------------------------------------------------------------------- /src/company_researcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/__init__.py -------------------------------------------------------------------------------- /src/company_researcher/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/cli.py -------------------------------------------------------------------------------- /src/company_researcher/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/config.py -------------------------------------------------------------------------------- /src/company_researcher/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/main.py -------------------------------------------------------------------------------- /src/company_researcher/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/models/__init__.py -------------------------------------------------------------------------------- /src/company_researcher/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/models/models.py -------------------------------------------------------------------------------- /src/company_researcher/models/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/models/report.py -------------------------------------------------------------------------------- /src/company_researcher/models/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/models/response.py -------------------------------------------------------------------------------- /src/company_researcher/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/company_researcher/modules/ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/company_researcher/modules/ai/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/modules/ai/llm.py -------------------------------------------------------------------------------- /src/company_researcher/modules/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/company_researcher/modules/apis/lot_funding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/modules/apis/lot_funding.py -------------------------------------------------------------------------------- /src/company_researcher/modules/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/company_researcher/modules/prompts/career_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/modules/prompts/career_generator.py -------------------------------------------------------------------------------- /src/company_researcher/modules/prompts/company_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/modules/prompts/company_description.py -------------------------------------------------------------------------------- /src/company_researcher/modules/prompts/page_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/modules/prompts/page_type.py -------------------------------------------------------------------------------- /src/company_researcher/reports/pdf_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/reports/pdf_generator.py -------------------------------------------------------------------------------- /src/company_researcher/reports/templates/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/reports/templates/report.html -------------------------------------------------------------------------------- /src/company_researcher/scrapers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/company_researcher/scrapers/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/scrapers/parser.py -------------------------------------------------------------------------------- /src/company_researcher/scrapers/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/scrapers/scraper.py -------------------------------------------------------------------------------- /src/company_researcher/scrapers/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/src/company_researcher/scrapers/worker.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trysignalbase/company-researcher-agent/HEAD/uv.lock --------------------------------------------------------------------------------