Skip to content

Check Status

View predictions for a given dataset and query.

Parameters:

Name Type Description Default
predict_report_id str

The ID of the prediction report.

required
dataset_id str

The ID of the dataset.

required
search_query str

The search query to filter predictions.

required
page_number int

The page number of the results.

required

Returns:

Name Type Description
dict

A dictionary containing the predictions.

Sample Usage

predictions = anote.viewPredictions(
    predict_report_id="your_report_id",
    dataset_id="your_dataset_id",
    search_query="relevant keyword",
    page_number=1
)
print(f"Filtered Predictions: {predictions}")