probaGPT API
The **ProbaGPT API** is a programmatic interface to ProbaGPT's generative probabilistic modeling engine. It enables developers and analysts to: - Upload structured datasets - Fit flexible, high-dimensional probabilistic models - Query joint, marginal, and conditional probabilities - Estimate probability density functions (PDFs) - Simulate synthetic data consistent with learned distributions…
probaGPT API endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST |
query /query |
Executes a direct probabilistic query on the ProbaGPT model for a given `chat_id` without using a conversational LLM. ### Purpose - Allows precise probabilistic computations… |
| POST |
upload_data /upload_data |
Uploads a CSV file to fit a ProbaGPT model and creates a new chat with a unique `chat_id`. ### Purpose - Initiates a new chat session with a fitted ProbaGPT model for the… |
| GET |
stats /stats |
Returns descriptive statistics for the dataset associated with the first available model in the cache. ### Purpose - Provides insights into variable types, distributions, and… |
| GET |
chats /chats |
Returns a list of all chats associated with the authenticated RapidAPI user. ### Purpose - Retrieves metadata for all chats, allowing users to select a `chat_id` for querying. -… |