Template: Metrics Data
Cohesive offers a standard, fine-tuned model for extracting metrics (e.g., financial or operational metrics). Use the below schema in the request for best results:
{
allMetrics: {
Name: string; // The name of the metric in that row
Data: {
Date: string; // The date/column of that metric's value, in MM/DD/YYY format
Value: number; // The value of that metric for that date
}[]; // Each data entry for that metric
}[]//Each row is a separate metric to import
}
Last updated