This method requires a fine-tuned model created with Seekr’s fine-tuning feature. Only models built after September 22nd, 2025 are supported.
Retrieve influential fine-tuning data
chat.completions call, pass it as answer to skip an extra generation:
Response structure
Fields
results(list): The influential fine-tuning Q/A pairs.id(UUID): Unique identifier for the Q/A pair.file_id(UUID): Source file ID. Use this to trace back and edit the source documents from training data.messages(string): The Q/A content in the formatQ: <question>\nA: <answer>.influence_level(string): One ofhigh,medium, orlow. Irrelevant pairs are filtered out and not returned
answer(string): The model’s answer. Echoed back if you provided one; otherwise the answer generated internally.version(string): Schema version (currently"v0").
Common errors
- TypeError – A required parameter (e.g.
question) is missing or invalid. - 404 Not found – The provided
model_iddoes not exist. - 500 Internal server error – Unexpected server issue; retry the request.
Best practices
- Interpreting influence levels:
highmeans the Q/A pair strongly shaped the response;mediummeans moderate impact;lowmeans minimal contribution. Look for recurringhighpairs to understand the training patterns driving a response. - Unexpected results: If unrelated pairs are surfacing with high influence, review and refine your fine-tuning dataset.
- Empty results: The model may simply not have found training pairs relevant to the prompt. This is not an error.