infer_dictionary

infer_dictionary(
    df,
    guess_types=True,
    dataset_id='dataset-1',
    table_id='table-1',
    seed_semantics=False,
    semantic_sources=None,
    semantic_max_per_role=1,
    seed_verbose=True,
    seed_codes=None,
    seed_table_meta=None,
    seed_dataset_meta=None,
    llm_assess=False,
    llm_provider='openai',
    llm_model=None,
    llm_api_key=None,
    llm_base_url=None,
    llm_reasoning_effort=None,
    llm_top_n=5,
    llm_context_files=None,
    llm_context_text=None,
    llm_timeout_seconds=60,
    llm_request_fn=None,
)

Build a starter dictionary DataFrame aligned with the SDP schema.

Back to top