POST
/
api
/
parea
/
v1
/
experiments
p = Parea(api_key="PAREA_API_KEY")  # replace with your API key

exp_uuids = p.list_experiment_uuids(ListExperimentUUIDsFilters())
[
    {
      name: 'greeting',
      run_name: 'bijou-kail',
      project_uuid: '...',
      is_public: false,
      metadata: null,
      uuid: '...',
      created_at: '2024-04-15 22:19:13',
      status: 'completed',
      pinned_stats: [
        {
          var1: 'levenshtein',
          var2: null,
          operation: 'mean',
          value: 0.176471
        },
        { var1: 'Cost', var2: null, operation: 'mean', value: 0.00002 },
        { var1: 'Total Tokens', var2: null, operation: 'mean', value: 11 },
        { var1: 'Output Tokens', var2: null, operation: 'mean', value: 9 },
        { var1: 'Input Tokens', var2: null, operation: 'mean', value: 2 },
        { var1: 'Latency', var2: null, operation: 'mean', value: 0.65273 }
      ],
      num_samples: 6
    }
]

Body

project_name
string

Name of the project to filter experiments by.

experiment_name_filter
string

Filters experiments to contain the given string in their name.

run_name_filter
string

Filters experiments to contain the given string in their run name.

metadata_filter
dict[str, any]

Filters experiments to contain the given metadata. The metadata_filter is a dictionary where the keys are the metadata keys and the values are the metadata values to filter by.