You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Cap schema inference depth, drop raw schema from get-dataset
Calibration decision from #882 (probe: 10 top store Actors):
- generateSchemaFromItems collapses objects/arrays below depth 3 to a bare
type; deep social-media items (Facebook posts: 15.3 KB) now fit the
~2K-token budget.
- get-dataset stops returning the raw Apify dataset.schema (93–95% of
response bytes on top Actors, 23–39% phantom fields); nextStep routes to
get-dataset-schema instead.
Note for apify-mcp-server-internal: get-dataset structuredContent no longer
carries the schema key.
https://claude.ai/code/session_01Sf9wACoa9h9y2m2WZ2Sde5
constnextStep=`Use ${HelperTools.DATASET_GET_ITEMS} with datasetId=${datasetId} and limit (for example 20) to fetch items.`;
71
+
constnextStep=`Use ${HelperTools.DATASET_GET_ITEMS} with datasetId=${datasetId} and limit (for example 20) to fetch items, or ${HelperTools.DATASET_SCHEMA_GET} to infer item structure.`;
0 commit comments