Code - Python
Python Helper Functions
Natively Supported Helper Functions
This client provides an interface to interact with the Relevance API. It includes functions to run various steps, insert and retrieve data, and upload temporary files.
Functions
Insert data
Python
Inserts data into a Relevance dataset.
Arguments
dataset_id
: The ID of the dataset to insert into.data
: A list of dictionaries containing the data to insert.
Returns
- The response from the API as a JSON object.
Retrieve data
Python
Retrieves data from a Relevance dataset.
Arguments
dataset_id
: The ID of the dataset to retrieve from.page_size
: The number of results to return per page (optional).include_fields
: A list of fields to include in the response (optional).
Returns
- The response from the API as a JSON object.
Retrieve All Data
Python
Retrieves all data from a Relevance dataset, paginated to handle large datasets.
Arguments
dataset_id
: The ID of the dataset to retrieve from.page_size
: The number of results to return per page. Defaults to 1000 (optional).include_fields
: A list of fields to include in the response. Defaults to None (optional).
Returns
- A list of dictionaries containing the retrieved data. Each dictionary represents a document from the dataset.
Example
Upload a temporary file
Python
Uploads a temporary file to Relevance.
Arguments
file_path_or_bytes
: The path to the file or the file contents as bytes.ext
: The file extension (optional).
Returns
- A dictionary containing the download URL of the uploaded file.
Prompt completion
Python
Runs the prompt_completion
step with the given prompt and model.
Arguments
prompt
: The prompt to complete.model
: The model to use for completion (optional).
Returns
- The response from the API as a JSON object.
Run a step
Python
Runs a Relevance step with the given name and parameters.
Arguments
step_name
: The name of the step to run.params
: A dictionary of parameters to pass to the step.
Returns
- The response from the API as a JSON object.
Usage Examples
Insert data
Python
Retrieve data
Python
Retrieve all
Python
Upload a temporary file
Note: Make sure to replace the region
variable with your actual region.
Python
Prompt completion
Python
Run a step
Python
Was this page helpful?