changedInput schema / properties / min_similarity / description
Previous value: -"Minimum vector cosine similarity threshold (0.0 - 1.0, default 0.35)."New value: +"Minimum vector cosine similarity threshold (0.0 - 1.0, default 0.35). Measures topical closeness to the ICP text, not fit or buying readiness."
addedInput schema / properties / screen
Added value: +{
+ "description": "Screen retrieved candidates for buyer-vs-vendor role and corporate status before returning them (default true). Set false for the raw similarity ranking, which will include companies that sell what the ICP describes.",
+ "type": "boolean"
+}
addedOutput schema / properties / index_last_updated
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / prospects / items / properties / screen_note
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / prospects / items / properties / screen_role
Added value: +{
+ "enum": [
+ "buyer",
+ "vendor",
+ "unclear"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / prospects / items / properties / screen_status
Added value: +{
+ "enum": [
+ "acquired",
+ "inactive",
+ "unclear"
+ ],
+ "type": "string"
+}
changedOutput schema / properties / prospects / items / required
Previous value: -[
- "company_name",
- "domain",
- "vertical",
- "what_they_do",
- "tech_stack",
- "growth_signals",
- "similarity",
- "relevance_score",
- "suggested_action"
-]New value: +[
+ "company_name",
+ "domain",
+ "vertical",
+ "what_they_do",
+ "tech_stack",
+ "growth_signals",
+ "similarity",
+ "suggested_action"
+]
addedOutput schema / properties / qualification_status
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / screen
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "candidates_retrieved": {
+ "type": "number"
+ },
+ "note": {
+ "type": "string"
+ },
+ "ran": {
+ "type": "boolean"
+ },
+ "withheld": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "ran",
+ "candidates_retrieved",
+ "withheld",
+ "note"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / withheld_accounts
Added value: +{
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "company_name": {
+ "type": "string"
+ },
+ "detail": {
+ "type": "string"
+ },
+ "domain": {
+ "type": "string"
+ },
+ "reason": {
+ "type": "string"
+ },
+ "similarity": {
+ "type": "number"
+ },
+ "vertical": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "company_name",
+ "domain",
+ "vertical",
+ "similarity",
+ "reason"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / required
Previous value: -[
- "query",
- "total_matches",
- "total_universe_indexed",
- "search_latency_ms",
- "source",
- "prospects"
-]New value: +[
+ "query",
+ "total_matches",
+ "total_universe_indexed",
+ "search_latency_ms",
+ "source",
+ "qualification_status",
+ "screen",
+ "prospects",
+ "withheld_accounts"
+]