The data science agent analyzes datasets, generates visualizations, and produces comprehensive reports. This fire-and-forget endpoint submits a prompt and returns the final report in a single call.
SambaNova API Key
Successful Response
Generated HTML report for exploratory data analysis (EDA)
MIME type of the generated report (should be 'text/html')
"text/html"
Title of the analysis report
"Data Science Analysis Report"
Full HTML content of the generated report
"<!DOCTYPE html>\n<html>\n<head>\n <title>Data Science Analysis Report</title>\n <style>/* Professional styling */</style>\n</head>\n<body>\n <h1>Exploratory Data Analysis Report</h1>\n <h2>Dataset Overview</h2>\n <p>The dataset contains 1,000 rows and 15 columns...</p>\n <h2>Statistical Summary</h2>\n <table><!-- Summary statistics --></table>\n <h2>Visualizations</h2>\n <img src=\"data:image/png;base64,...\" alt=\"Distribution Plot\">\n <img src=\"data:image/png;base64,...\" alt=\"Correlation Heatmap\">\n <h2>Key Findings</h2>\n <ul>\n <li>Strong correlation between features X and Y</li>\n <li>Missing values detected in column Z</li>\n </ul>\n</body>\n</html>\n"