Skip to content

Hi Coactive team!

This is a sample of what your docs might look like on Starport, based on your public docs.

Take a look! Ask AI, search, the MCP server, and Markdown copies all work.

Starport is a free and open-source docs framework based on Starlight and maintained by Promptless. Promptless is the AI agent that automatically updates your customer-facing docs.

Every annual Promptless plan comes with white-glove migration to Starport, where we migrate the content, tune the result with you, and you own the repository so you're never locked in.

Book a 15-minute walkthrough

Sample migration of Coactive docs to Starport, prepared by PromptlessBook 15-minute call

Configuration

Context Studio requires a single dataset to be enabled for the feature. You enable it by setting the context_studio_enabled flag on the dataset configuration.

Use the script below to enable Context Studio for your dataset. Only one dataset can have Context Studio enabled at a time.

import json
import requests
DATASET_ID = '<your_dataset_id>'
TOKEN = '<your_access_token>'
response = requests.patch( # use .patch to update an existing config, .put for a new dataset config
url=f"https://api.coactive.ai/api/v0/datasets/{DATASET_ID}/config",
headers={
"accept": "application/json",
"Authorization": f"Bearer {TOKEN}",
},
json={
"context_studio_enabled": True
},
timeout=30.0,
)
print(f"{response.status_code=}, {json.dumps(response.json(), indent=2, sort_keys=True)}")
Parameter Description
DATASET_ID The unique identifier of the dataset you want to enable for Context Studio
TOKEN Your API access token
context_studio_enabled Set to True to enable Context Studio for the dataset

Use requests.patch() to update an existing dataset configuration, or requests.put() if configuring a new dataset.