| foundry_eval_run_create | R Documentation |
Run an evaluation against a data source. The eval's testing_criteria are
applied to every row in the source.
foundry_eval_run_create(
eval_id,
data_source,
name = NULL,
metadata = NULL,
api_key = NULL,
token = NULL,
endpoint = NULL,
api_version = NULL
)
eval_id |
Character. Evaluation ID to run. |
data_source |
List. A run data source from |
name |
Character. Optional run name. |
metadata |
List. Optional metadata attached to the run. |
api_key |
Character. Optional API key. Falls back to configured auth. |
token |
Character. Optional bearer token. Falls back to configured auth. |
endpoint |
Character. Optional endpoint override. |
api_version |
Character. Optional |
A one-row tibble describing the created run.
## Not run:
# Requires a configured Azure endpoint and credentials, an evaluation ID,
# and an uploaded JSONL file matching its data-source configuration.
foundry_eval_run_create(
eval_id = "eval_abc123",
data_source = foundry_eval_run_data(file_id = "file-xyz"),
name = "nightly"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.