leads-cli 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. company_discovery/__init__.py +4 -0
  2. company_discovery/adapters/__init__.py +5 -0
  3. company_discovery/adapters/apollo.py +189 -0
  4. company_discovery/adapters/exa.py +112 -0
  5. company_discovery/adapters/llm.py +118 -0
  6. company_discovery/adapters/protocols.py +58 -0
  7. company_discovery/adapters/website.py +154 -0
  8. company_discovery/bundled_skills/__init__.py +1 -0
  9. company_discovery/bundled_skills/company-discovery-operator/SKILL.md +72 -0
  10. company_discovery/bundled_skills/company-discovery-operator/agents/openai.yaml +4 -0
  11. company_discovery/bundled_skills/company-enrichment-operator/SKILL.md +94 -0
  12. company_discovery/bundled_skills/company-enrichment-operator/agents/openai.yaml +4 -0
  13. company_discovery/bundled_skills/company-search-spec-writer/SKILL.md +109 -0
  14. company_discovery/bundled_skills/company-search-spec-writer/agents/openai.yaml +4 -0
  15. company_discovery/bundled_skills/contact-discovery-operator/SKILL.md +80 -0
  16. company_discovery/bundled_skills/contact-discovery-operator/agents/openai.yaml +4 -0
  17. company_discovery/bundled_skills/contact-enrichment-operator/SKILL.md +86 -0
  18. company_discovery/bundled_skills/contact-enrichment-operator/agents/openai.yaml +4 -0
  19. company_discovery/bundled_skills/contact-search-spec-writer/SKILL.md +86 -0
  20. company_discovery/bundled_skills/contact-search-spec-writer/agents/openai.yaml +4 -0
  21. company_discovery/bundled_skills/leads-update-operator/SKILL.md +60 -0
  22. company_discovery/bundled_skills/leads-update-operator/agents/openai.yaml +4 -0
  23. company_discovery/cli.py +1789 -0
  24. company_discovery/db/__init__.py +5 -0
  25. company_discovery/db/contact_enrichment_repository.py +268 -0
  26. company_discovery/db/contact_repository.py +366 -0
  27. company_discovery/db/enrichment_repository.py +207 -0
  28. company_discovery/db/models.py +324 -0
  29. company_discovery/db/repository.py +363 -0
  30. company_discovery/db/session.py +48 -0
  31. company_discovery/domain/__init__.py +24 -0
  32. company_discovery/domain/contact_models.py +178 -0
  33. company_discovery/domain/contact_spec.py +86 -0
  34. company_discovery/domain/models.py +287 -0
  35. company_discovery/domain/spec.py +263 -0
  36. company_discovery/migrations.py +190 -0
  37. company_discovery/prompts/__init__.py +8 -0
  38. company_discovery/prompts/candidate_evaluation/system.md +13 -0
  39. company_discovery/prompts/company_enrichment/system.md +42 -0
  40. company_discovery/prompts/contact_evaluation/system.md +18 -0
  41. company_discovery/prompts/query_generation/system.md +10 -0
  42. company_discovery/release_manifest.json +7 -0
  43. company_discovery/reports/__init__.py +4 -0
  44. company_discovery/reports/contact_enrichment_exporter.py +108 -0
  45. company_discovery/reports/contact_exporter.py +132 -0
  46. company_discovery/reports/enrichment_exporter.py +125 -0
  47. company_discovery/reports/exporter.py +135 -0
  48. company_discovery/runtime.py +336 -0
  49. company_discovery/services/__init__.py +4 -0
  50. company_discovery/services/contact_enrichment_pipeline.py +344 -0
  51. company_discovery/services/contact_enrichment_progress.py +37 -0
  52. company_discovery/services/contact_evaluator.py +110 -0
  53. company_discovery/services/contact_pipeline.py +295 -0
  54. company_discovery/services/contact_progress.py +38 -0
  55. company_discovery/services/enrichment_extractor.py +61 -0
  56. company_discovery/services/enrichment_pipeline.py +526 -0
  57. company_discovery/services/enrichment_progress.py +20 -0
  58. company_discovery/services/enrichment_resolver.py +148 -0
  59. company_discovery/services/evaluator.py +40 -0
  60. company_discovery/services/hygiene.py +51 -0
  61. company_discovery/services/memory.py +150 -0
  62. company_discovery/services/normalization.py +98 -0
  63. company_discovery/services/pipeline.py +628 -0
  64. company_discovery/services/progress.py +48 -0
  65. company_discovery/services/query_planner.py +47 -0
  66. company_discovery/settings.py +152 -0
  67. company_discovery/skill_installer.py +197 -0
  68. company_discovery/update_plan.py +79 -0
  69. leads_cli-0.1.0.dist-info/METADATA +277 -0
  70. leads_cli-0.1.0.dist-info/RECORD +72 -0
  71. leads_cli-0.1.0.dist-info/WHEEL +4 -0
  72. leads_cli-0.1.0.dist-info/entry_points.txt +2 -0
@@ -0,0 +1,277 @@
1
+ Metadata-Version: 2.4
2
+ Name: leads-cli
3
+ Version: 0.1.0
4
+ Summary: Agent-first company and contact discovery for outbound lead generation.
5
+ Author: Paolo Auletta
6
+ License: Proprietary
7
+ Requires-Python: >=3.11
8
+ Requires-Dist: httpx>=0.27.2
9
+ Requires-Dist: platformdirs>=4.3.6
10
+ Requires-Dist: pydantic-settings>=2.7.1
11
+ Requires-Dist: pydantic>=2.10.6
12
+ Requires-Dist: questionary>=2.1.0
13
+ Requires-Dist: rich>=13.9.4
14
+ Requires-Dist: sqlalchemy>=2.0.38
15
+ Requires-Dist: tldextract>=5.1.3
16
+ Requires-Dist: typer>=0.15.1
17
+ Provides-Extra: dev
18
+ Requires-Dist: build>=1.2.2; extra == 'dev'
19
+ Requires-Dist: pytest-cov>=6.0.0; extra == 'dev'
20
+ Requires-Dist: pytest>=8.3.4; extra == 'dev'
21
+ Requires-Dist: twine>=5.1.1; extra == 'dev'
22
+ Description-Content-Type: text/markdown
23
+
24
+ # Leads
25
+
26
+ An agent-first, memory-first company and contact research engine. Strict JSON specs drive
27
+ deterministic memory retrieval, focused Exa searches, structured LLM evaluation, targeted
28
+ official-site enrichment, persistence, and reviewable CSV/Markdown/JSON artifacts.
29
+
30
+ Design and rebuild notes live in [`NOTES/`](./NOTES/README.md).
31
+
32
+ ## Install
33
+
34
+ The canonical install path is `pipx`. The package is published as `leads-cli` because `leads`
35
+ is already taken on PyPI, but it still installs the `leads` command. The installer scripts are
36
+ thin convenience wrappers around `pipx install leads-cli` or `pipx upgrade leads-cli`, followed
37
+ by `leads init`.
38
+
39
+ ### macOS and Linux
40
+
41
+ ```bash
42
+ curl -fsSL https://raw.githubusercontent.com/paoloauletta/leads/main/install.sh | bash
43
+ ```
44
+
45
+ ### Windows PowerShell
46
+
47
+ ```powershell
48
+ irm https://raw.githubusercontent.com/paoloauletta/leads/main/install.ps1 | iex
49
+ ```
50
+
51
+ ### Direct pipx install
52
+
53
+ ```bash
54
+ pipx install leads-cli
55
+ leads init
56
+ ```
57
+
58
+ Use `LEADS_SKIP_INIT=1` with either installer when you want to install first and run onboarding
59
+ later.
60
+
61
+ ## Onboarding
62
+
63
+ Run:
64
+
65
+ ```bash
66
+ leads init
67
+ ```
68
+
69
+ The wizard creates one local workspace, stores config and secrets, initializes the SQLite database,
70
+ and installs bundled skills into the agent targets you choose, such as Codex, Claude Code, or
71
+ OpenCode. After setup, use one of those agents to create a spec, run discovery, and summarize the
72
+ selected leads.
73
+
74
+ Runtime data defaults to the OS-appropriate Leads application data folder. Override it with
75
+ `LEADS_HOME=/path/to/data` when needed.
76
+
77
+ `LLM_RESPONSE_FORMAT=auto` uses strict JSON Schema with OpenAI and validated JSON Object mode
78
+ with DeepSeek or other compatible providers. Override it only when a provider documents support
79
+ for a different mode.
80
+
81
+ ## Workspace Layout
82
+
83
+ `leads init` creates one workspace root with these top-level directories:
84
+
85
+ ```text
86
+ backups/
87
+ config/
88
+ data/
89
+ logs/
90
+ runs/
91
+ skills/
92
+ specs/
93
+ ```
94
+
95
+ `config/` contains local settings, secrets, and runtime metadata. `data/company_memory.db` is the
96
+ SQLite memory database. `specs/companies/` and `specs/contacts/` are where agent-created specs
97
+ belong. `runs/` contains discovery and enrichment artifacts. `backups/` stores migration and reset
98
+ backups. `skills/` stores bundled skill copies and install metadata. `logs/leads.log` is a CLI
99
+ diagnostic log for troubleshooting; it is not lead evidence or a run artifact.
100
+
101
+ ## Commands
102
+
103
+ ```bash
104
+ leads init
105
+ leads doctor
106
+ leads init-db
107
+ leads version
108
+ leads update --check
109
+ leads migrate --check
110
+ leads config show
111
+ leads skills status
112
+ leads companies discover --spec company_search_spec.json
113
+ leads companies enrich DISCOVERY_RUN_ID
114
+ leads companies show-run RUN_ID
115
+ leads companies inspect RUN_ID --domain example.com
116
+ leads companies export RUN_ID
117
+ leads companies rerun RUN_ID
118
+ leads companies show-enrichment ENRICHMENT_RUN_ID
119
+ leads companies inspect-enrichment ENRICHMENT_RUN_ID --domain example.com
120
+ leads companies export-enrichment ENRICHMENT_RUN_ID
121
+ leads contacts validate-spec --spec contact_search_spec.json
122
+ leads contacts discover --spec contact_search_spec.json
123
+ leads contacts enrich CONTACT_DISCOVERY_RUN_ID
124
+ leads contacts show-run CONTACT_DISCOVERY_RUN_ID
125
+ leads contacts inspect CONTACT_DISCOVERY_RUN_ID --person "Jane Smith"
126
+ leads contacts export CONTACT_DISCOVERY_RUN_ID
127
+ leads contacts show-enrichment CONTACT_ENRICHMENT_RUN_ID
128
+ leads contacts inspect-enrichment CONTACT_ENRICHMENT_RUN_ID --person "Jane Smith"
129
+ leads contacts export-enrichment CONTACT_ENRICHMENT_RUN_ID
130
+ ```
131
+
132
+ `leads init-db` creates `company_memory.db` and its schema. If the database already exists, it
133
+ asks before resetting it. An accepted reset moves the existing `runs/` directory to a timestamped
134
+ archive such as `runs-previousdb-20260622T184500Z/`, then creates a new empty `runs/` directory.
135
+
136
+ `leads migrate --check` is read-only. `leads migrate --apply` creates a timestamped backup before
137
+ supported structural schema changes and refuses unknown migration paths.
138
+
139
+ Use `--verbose` on `discover` to print generated queries and candidate-level decisions.
140
+
141
+ ## Development Setup
142
+
143
+ ```bash
144
+ python -m venv .venv
145
+ .venv/bin/pip install -e '.[dev]'
146
+ .venv/bin/leads init
147
+ ```
148
+
149
+ For a local smoke test, create or copy a company spec, configure provider keys during onboarding,
150
+ then run:
151
+
152
+ ```bash
153
+ leads companies discover --spec company_search_spec.json
154
+ ```
155
+
156
+ ## Multiple verticals
157
+
158
+ Use `verticals` to request OR semantics: companies may match construction, healthcare, or
159
+ engineering; they do not need to match all three. Each vertical gets an independent memory scan,
160
+ gap calculation, Exa query plan, and evaluation lane.
161
+
162
+ Each vertical now uses one simple shape: `key`, `label`, and optional query hints. Use
163
+ `search_terms` when the label alone is too broad or niche, and `exclude_terms` when a vertical
164
+ needs a few search-time negatives. Old specs that still contain `mode`, `seed_terms`, or
165
+ `anti_terms` remain readable and normalize to the new shape.
166
+
167
+ `balance_mode` controls final selection. `soft` (the default) fills an equal quality-gated floor
168
+ per vertical, then reallocates unused slots to good companies from stronger lanes. `strict` keeps
169
+ equal caps and may return fewer companies. `none` selects good companies in discovery order.
170
+
171
+ The legacy single `vertical` object remains accepted for existing specs.
172
+
173
+ ## Memory policy
174
+
175
+ `novelty_mode` controls whether saved companies can enter a run:
176
+
177
+ - `unused_memory` (default) searches memory first and only considers companies never selected before.
178
+ - `only_new` skips memory candidates and removes externally rediscovered domains already in memory.
179
+ - `full_memory` searches all matching memory, including companies selected in previous runs.
180
+
181
+ Old `prefer_new` and `allow_known` specs remain readable and normalize to `unused_memory` and
182
+ `full_memory`, respectively.
183
+
184
+ ## Enrichment
185
+
186
+ Enrichment is always a separate command run after discovery completes:
187
+
188
+ ```bash
189
+ leads companies discover --spec company_search_spec.json
190
+ leads companies enrich DISCOVERY_RUN_ID
191
+ ```
192
+
193
+ It consumes selected companies directly from the completed discovery run. It retains company
194
+ name, root domain, target vertical, geography, employee estimate, ownership type, and discovery
195
+ evidence, then finds only the missing LinkedIn company profile, phone, complete in-scope address,
196
+ and independence status.
197
+
198
+ Each enrichment execution gets a random run ID such as `company-enrich-a1b2c3d4e5f6`. That ID is
199
+ used both for CLI follow-up commands and the enrich artifact folder under the source discovery run.
200
+
201
+ Fresh enrichment facts are reused by company/domain before any website request. The bounded website
202
+ pass reads the homepage and best contact/location/about pages; unresolved fields can use a narrow
203
+ Exa corroboration search. Output is split into `enriched.csv`, `review.csv`, and `blocked.csv`, while
204
+ the enrichment `run.json` keeps field provenance, conflicts, and the per-company trace.
205
+
206
+ LinkedIn enrichment first checks company-profile links exposed by the official website, including
207
+ footer icon links. Only `/company/...` URLs are accepted; personal profiles, jobs, and posts are
208
+ discarded. If the official site has no profile link, enrichment performs a narrow LinkedIn company
209
+ search. The normalized URL and its source page are saved in enrichment memory and exported as
210
+ `linkedin_url`.
211
+
212
+ By default, complete profiles with unknown independence remain in review. Add
213
+ `--allow-unknown-independence` only when that uncertainty is acceptable. Generic values such as
214
+ `privately_held` never count as proof of independence.
215
+
216
+ To exclude family businesses during enrichment, add this to the discovery spec:
217
+
218
+ ```json
219
+ "exclude": {
220
+ "structured": {"ownership_signals": ["family_owned"]}
221
+ }
222
+ ```
223
+
224
+ Enrichment still records the company as independent, but sends it to `blocked.csv` with a
225
+ `fit_conflict` and `excluded_family_owned` flag. The ownership signal is retained in enrichment
226
+ memory, so the same rule applies when a later run reuses fresh facts.
227
+
228
+ ## Contact Discovery
229
+
230
+ Contact discovery is a separate phase after company enrichment. It starts from a completed
231
+ `company-enrich-<id>`, uses only its ready companies by default, and finds current people matching
232
+ structured role targets.
233
+
234
+ ```bash
235
+ cp examples/contact_search_spec.json contact_search_spec.json
236
+ leads contacts validate-spec --spec contact_search_spec.json
237
+ leads contacts discover --spec contact_search_spec.json
238
+ ```
239
+
240
+ For every company and role, the command reuses accepted contact memory from the last 30 days, then
241
+ uses one Exa people-index query plus one official-domain evidence query for each remaining
242
+ per-company gap. The LLM evaluates identity, current employment at the exact target company, and
243
+ requested-title fit. A model cannot force an acceptance when those explicit checks are not
244
+ satisfied.
245
+
246
+ Artifacts are split into `accepted.csv`, `review.csv`, and `rejected.csv`. All three use the same
247
+ client-facing columns:
248
+
249
+ ```text
250
+ company_name, company_domain, contact_name, title, linkedin_url,
251
+ email, phone, status, notes
252
+ ```
253
+
254
+ `email` and `phone` are intentionally blank during discovery. Full queries, raw Exa results,
255
+ evidence, role keys, verdict details, and memory/live source decisions are retained in `run.json`.
256
+
257
+ ## Contact Enrichment
258
+
259
+ Contact enrichment is a separate Apollo-backed command after contact discovery:
260
+
261
+ ```bash
262
+ leads contacts enrich contact-discover-a1b2c3d4e5f6
263
+ ```
264
+
265
+ Only accepted contacts enter enrichment. Live-web discovery remains authoritative for the person's
266
+ identity, current company, title, role, and LinkedIn URL; Apollo can add email and phone channels
267
+ but cannot overwrite those facts. Exact identity and company/email-domain checks classify each
268
+ person as `ready`, `review`, or `blocked`, with raw Apollo trace and flags retained in `run.json`.
269
+
270
+ Apollo bulk requests are sent in groups of 10. Phone and waterfall requests are asynchronous, so
271
+ the default email-and-phone command requires `APOLLO_WEBHOOK_URL` and polls Apollo's request result
272
+ until completion. Use `--no-phone` for an email-only run when a webhook is unavailable. Fresh
273
+ Apollo results are reused for 14 days unless `--refresh` is supplied.
274
+
275
+ Artifacts live below the source contact run in
276
+ `contacts/contact-discover-<id>/enrich/contact-enrich-<id>/` and retain the same compact
277
+ client columns used by discovery. Output is split into `ready.csv`, `review.csv`, and `blocked.csv`.
@@ -0,0 +1,72 @@
1
+ company_discovery/__init__.py,sha256=5qc9XN4-aqsC00Q2hX_yVr1RhLH1LFdJXLXc-8UvCd4,97
2
+ company_discovery/cli.py,sha256=gR9uVj7gEh0V9BiaOrhXlDanAGR83XSCHST_-5Cflr0,69585
3
+ company_discovery/migrations.py,sha256=7ETyxn5eklOK5ijkpjaNuXRgvxij6_tcS1D_nqWznHc,7101
4
+ company_discovery/release_manifest.json,sha256=0t7-y5CYMr36LUbxS9DS7gC4nSRwWDNDmzgZJGTSR2s,143
5
+ company_discovery/runtime.py,sha256=HjjhEAdKja69jf4TKvoKMjx009o6R3a7FQ2q6R-BgyA,10610
6
+ company_discovery/settings.py,sha256=yJN6BmXYrx3bvt9hYszbNZdiGuhN7GW5p0Ew57PUkWY,5241
7
+ company_discovery/skill_installer.py,sha256=yophXF4YoZgaa06Yye8BJqF43sHYyuuEvCOQdODbeto,6036
8
+ company_discovery/update_plan.py,sha256=2-im-7_BI0nMH49lqwhjbz3ZVO-O92tHidHUVllhhT8,3253
9
+ company_discovery/adapters/__init__.py,sha256=27v0-0JsAk9RZthfaj2WT0Hb92NBfkXfRY9ZYQcVOhQ,165
10
+ company_discovery/adapters/apollo.py,sha256=vcPSWFAp1z-fnXUNOrY9Ok80o3YmleTMAj8SnB-Ix-I,8137
11
+ company_discovery/adapters/exa.py,sha256=n1_Fef_T7qsywkpsF8Wn8CitGbwupQWH8njmTuER7rU,4343
12
+ company_discovery/adapters/llm.py,sha256=UNGF7fiI9bK-AESnYNC7E_YwmKqH8Kla9F0Z_bw7s9I,4716
13
+ company_discovery/adapters/protocols.py,sha256=_Xzuc31w4lq31sb0Ale8UgoutIBuL5cfjPxHJrZ-sos,1417
14
+ company_discovery/adapters/website.py,sha256=981EwCxPcqmWo9yD8U1aNCYof03AOjtzF3fEEg1tHCc,5624
15
+ company_discovery/bundled_skills/__init__.py,sha256=uik9j7pIHijtEAABtmGwH6cSJJ8vt5N6aiciUlQI0jQ,55
16
+ company_discovery/bundled_skills/company-discovery-operator/SKILL.md,sha256=KlFj2DUKOUKqs96OSlZ35W4gwoIPYHzfbiUzQIj7bXU,4492
17
+ company_discovery/bundled_skills/company-discovery-operator/agents/openai.yaml,sha256=EBtEZWnB__j-nN--NEDvXIv7vvEdmDgwZ6m0YA4uY3g,236
18
+ company_discovery/bundled_skills/company-enrichment-operator/SKILL.md,sha256=xwZJM4eEwK6b8aYEXZcyFpZLrNI2NtfPQrWKKkczhzk,5375
19
+ company_discovery/bundled_skills/company-enrichment-operator/agents/openai.yaml,sha256=L_V39cdOFpyM8OY5Y_RykW1XIrCwaYW9pRVYK_B7B4A,283
20
+ company_discovery/bundled_skills/company-search-spec-writer/SKILL.md,sha256=4nNR6Z9-Mq2fTv4zat100gKPOAginCDtMuAIt-U6BO0,5923
21
+ company_discovery/bundled_skills/company-search-spec-writer/agents/openai.yaml,sha256=gaSYZfstyqiTmJqy81G-6Hg1BCEpbX9VOXgHtWmJbNY,244
22
+ company_discovery/bundled_skills/contact-discovery-operator/SKILL.md,sha256=217Jj8BslLYfarxpC_C-x-bsI8sj-OXPTiIB8PZyuEA,4389
23
+ company_discovery/bundled_skills/contact-discovery-operator/agents/openai.yaml,sha256=lEm-N0gmJgFo3O_u5p6c3UwdhmcLe8RNu5Xa14Rax08,232
24
+ company_discovery/bundled_skills/contact-enrichment-operator/SKILL.md,sha256=XCMUF9zikAIRraNcucvA2tLfH5HoTejFadJJwQoH41U,4603
25
+ company_discovery/bundled_skills/contact-enrichment-operator/agents/openai.yaml,sha256=Br7UAmgIQqdlULI-Gq2iFvsD4ayNld2lwyqJO413vSU,249
26
+ company_discovery/bundled_skills/contact-search-spec-writer/SKILL.md,sha256=vmxc6PxT_HBoUQvGG4owNSELCX2wKZWBx0I5Clu_N50,3695
27
+ company_discovery/bundled_skills/contact-search-spec-writer/agents/openai.yaml,sha256=JDOJzchfjkzk5A6sHO3I6uodYhIBA5LV0PoSzmDnOJI,231
28
+ company_discovery/bundled_skills/leads-update-operator/SKILL.md,sha256=ASxkDDyU-op5w7fv9zTR2PqfTlFCGwcOWSEQxrk0XaM,3189
29
+ company_discovery/bundled_skills/leads-update-operator/agents/openai.yaml,sha256=zMnWmQuK0GOwhDqN5kPUpJyVDGo2V_wdKT1d8vlxQac,284
30
+ company_discovery/db/__init__.py,sha256=Tf8z4nXIEIP8GHq5zB6cCeeA6pcjdVS0sP8cbF0DFXM,162
31
+ company_discovery/db/contact_enrichment_repository.py,sha256=HdGL5gXIWpfeF1agDBDRYu3uqnLSYt4bHSUT3Fli0nE,11163
32
+ company_discovery/db/contact_repository.py,sha256=1lSaXKIJuL5LPeQtCI0YXC6ggurHjTc3vxzLwZkJAwM,15203
33
+ company_discovery/db/enrichment_repository.py,sha256=9Ecm3fjly9-J1bSQfs0YmDz-Xl7O7yEUgFo2ANoA9sA,8704
34
+ company_discovery/db/models.py,sha256=JVlSVuaVM9D_CY7HKJHBQkFaf9D_2uPCr8Xmh_fcpQE,17466
35
+ company_discovery/db/repository.py,sha256=JTQD_PYmF5HeJADQWPx5d3JUyMDE_3zc3A2tve_yyNQ,14549
36
+ company_discovery/db/session.py,sha256=DNsRkAvQQYFBo5fUF2thIw1-fbYoQ1gemFfRkxpkBKU,1470
37
+ company_discovery/domain/__init__.py,sha256=JRuWH0ctxeOerFHH2eHb0IyeD8MX3uf97iWUjVTkK10,477
38
+ company_discovery/domain/contact_models.py,sha256=ksj8MVqcj3h7DO3zPaTksR0NBNnCMb7Uer5huXGpp2U,4800
39
+ company_discovery/domain/contact_spec.py,sha256=szIG16DIOXobuNsM0vUOH71oRKF23M-cHHOIDVeGppw,3088
40
+ company_discovery/domain/models.py,sha256=beTwmij5hVAkk2a0we2A9mOW10CtuwzvwfMF9J4JYS0,7767
41
+ company_discovery/domain/spec.py,sha256=aRm3pHRipV8dAV-rgSMtp8a_gjvnj0xZksDKgzhu-iM,9040
42
+ company_discovery/prompts/__init__.py,sha256=7zfBw353QRmxhpdWnWPqL4o012SLuXhZYJW3ZgVr_h8,234
43
+ company_discovery/prompts/candidate_evaluation/system.md,sha256=bErTiDYq0X-q3A_EFthvqXtDS-366OJriZxLbW7V9WE,902
44
+ company_discovery/prompts/company_enrichment/system.md,sha256=JSRS2PQKDl7Aux9DEySJcCv1utx8oWoDtMNK4BIr51g,2284
45
+ company_discovery/prompts/contact_evaluation/system.md,sha256=g1kM6fOP_pcJkAfihqc7Lr8HQjWS9pwCdBBMuvhie38,994
46
+ company_discovery/prompts/query_generation/system.md,sha256=5xL9ES1YFJzB-HRYFSU9XHTbsICGuu7h1ojqCcPRgPQ,654
47
+ company_discovery/reports/__init__.py,sha256=nG--6ITyepPkDWKEB7IeIQPkEypZeHD6RmNNwbAuKwU,97
48
+ company_discovery/reports/contact_enrichment_exporter.py,sha256=LekU9ia7uiJbcPLooN3Hj8Bket94Md90XReJ8f8JU7g,4117
49
+ company_discovery/reports/contact_exporter.py,sha256=ElJ70yLHrExzk_NOt-TE4aP7aFuqF2I_tltppeFhK10,5147
50
+ company_discovery/reports/enrichment_exporter.py,sha256=cLBr3N_jpbWX7EuMi1Y2t6E0AVphVF1fBRB41RB1PQU,5239
51
+ company_discovery/reports/exporter.py,sha256=JL8HpM005idjE3jTs0YFmOEOKREMYH2sbGJeX6RW4X4,5625
52
+ company_discovery/services/__init__.py,sha256=X_b-8NwIk39K0Uegi3NuVpIKGrv-luJZNQSnsriX6es,100
53
+ company_discovery/services/contact_enrichment_pipeline.py,sha256=WKaneiO-wcnItqhB-CTWK_nFHq9bGSzCzI3dFmesyJg,13774
54
+ company_discovery/services/contact_enrichment_progress.py,sha256=hp5DBISwVhvmbTujiftFjObWAUbavNwnqlfCo278QmM,998
55
+ company_discovery/services/contact_evaluator.py,sha256=9Vt1_2RYzP3p2Wv9VCVhx2dEstWb3XBLjWZ2QKWYmlY,3808
56
+ company_discovery/services/contact_pipeline.py,sha256=c0ig6nTDOQTFjYtk0kUsEd2xIEiI3joy3fWjtOGSpk4,11935
57
+ company_discovery/services/contact_progress.py,sha256=3gsqz_y1mPy1usUxObxHM8H41Oe4cvoCMqSjctGzMB8,1127
58
+ company_discovery/services/enrichment_extractor.py,sha256=DuBKi8SNyyE1oD-JRdEQhZj8hgszb96lt8YQ5rmf7NU,2021
59
+ company_discovery/services/enrichment_pipeline.py,sha256=PYhfv2tsq_yL7xPb7uEfam9zzylwx8lEGecHtDgegDY,21244
60
+ company_discovery/services/enrichment_progress.py,sha256=tzMfaX7iSfZt6CLHbFnUZU1hB6NTeqGDqiQQq9qBc5k,603
61
+ company_discovery/services/enrichment_resolver.py,sha256=U963WmkTvN4pvZXwYK1P1ZRCr4-cZPHPYAnTGZxRBJ0,5535
62
+ company_discovery/services/evaluator.py,sha256=R_7gN7Wp2UxmQpF3nZez_hRyBXwyHzawAips28Jufnc,1351
63
+ company_discovery/services/hygiene.py,sha256=kDe4biQ74mhaIP14oB1jdhZeZgli1tPCYbTO1zeE7to,1462
64
+ company_discovery/services/memory.py,sha256=rfDkNT3wr0SI6QoMWBq1h7-FHk4zE0AOJOMpsaRs15g,5739
65
+ company_discovery/services/normalization.py,sha256=3PcMx2Hga1qHJqgzBV8lSTLM42OeqjLjdi63iYoxwPw,3502
66
+ company_discovery/services/pipeline.py,sha256=whV2Ez1dRJt-yvGNYYgiQXKrYt2qVY3_Sp7KD6MyR2A,26294
67
+ company_discovery/services/progress.py,sha256=Ku5oz4GrqtqeTO-To0qYF2srE1ayB-xPNkSWNx3hbbM,1136
68
+ company_discovery/services/query_planner.py,sha256=LZT7mFCmmdYUWF34fZJKQUP36aj4xHsnIwcNEpNXgKA,1858
69
+ leads_cli-0.1.0.dist-info/METADATA,sha256=vYbVuquXn36hbPoKFVHBxtxXekqPhsqUA9sU5KLtxRs,11102
70
+ leads_cli-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
71
+ leads_cli-0.1.0.dist-info/entry_points.txt,sha256=YibLqTZ6DQNv-gtwKa82spvsl3i7q9vQjPetVzIBGoo,52
72
+ leads_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ leads = company_discovery.cli:app