Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions src/content/api-reference/authentication.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,31 +52,31 @@ const client = new XetherClient({ apiKey: process.env.XETHER_API_KEY });
</TableHeader>
<TableBody>
<TableRow>
<TableCell className="font-mono">datasets:read</TableCell>
<TableCell className="font-medium font-mono">datasets:read</TableCell>
<TableCell>Read dataset metadata and versions</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">datasets:write</TableCell>
<TableCell className="font-medium font-mono">datasets:write</TableCell>
<TableCell>Create and update datasets</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">pipelines:read</TableCell>
<TableCell className="font-medium font-mono">pipelines:read</TableCell>
<TableCell>Read pipeline definitions</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">pipelines:write</TableCell>
<TableCell className="font-medium font-mono">pipelines:write</TableCell>
<TableCell>Create and update pipelines</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">executions:read</TableCell>
<TableCell className="font-medium font-mono">executions:read</TableCell>
<TableCell>Read execution status and logs</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">executions:write</TableCell>
<TableCell className="font-medium font-mono">executions:write</TableCell>
<TableCell>Trigger pipeline executions</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">admin</TableCell>
<TableCell className="font-medium font-mono">admin</TableCell>
<TableCell>Full access (use with caution)</TableCell>
</TableRow>
</TableBody>
Expand Down Expand Up @@ -142,15 +142,15 @@ curl -X POST https://auth.xether.ai/oauth/token \
</TableHeader>
<TableBody>
<TableRow>
<TableCell className="font-mono">401 Unauthorized</TableCell>
<TableCell className="font-medium font-mono">401 Unauthorized</TableCell>
<TableCell>Missing or invalid API key</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">403 Forbidden</TableCell>
<TableCell className="font-medium font-mono">403 Forbidden</TableCell>
<TableCell>Valid key but insufficient scope</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">429 Too Many Requests</TableCell>
<TableCell className="font-medium font-mono">429 Too Many Requests</TableCell>
<TableCell>Rate limit exceeded</TableCell>
</TableRow>
</TableBody>
Expand Down
14 changes: 7 additions & 7 deletions src/content/api-reference/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ Errors return a non-2xx status with:
</TableHeader>
<TableBody>
<TableRow>
<TableCell>Free</TableCell>
<TableCell className="font-medium">Free</TableCell>
<TableCell>60</TableCell>
</TableRow>
<TableRow>
<TableCell>Pro</TableCell>
<TableCell className="font-medium">Pro</TableCell>
<TableCell>600</TableCell>
</TableRow>
<TableRow>
<TableCell>Enterprise</TableCell>
<TableCell className="font-medium">Enterprise</TableCell>
<TableCell>Unlimited</TableCell>
</TableRow>
</TableBody>
Expand All @@ -100,19 +100,19 @@ X-RateLimit-Reset: 1705312260
</TableHeader>
<TableBody>
<TableRow>
<TableCell><a href="/docs/api-reference/authentication" className="text-primary hover:underline">Authentication</a></TableCell>
<TableCell className="font-medium"><a href="/docs/api-reference/authentication" className="text-primary hover:underline">Authentication</a></TableCell>
<TableCell>Manage API keys and OAuth tokens</TableCell>
</TableRow>
<TableRow>
<TableCell><a href="/docs/api-reference/datasets" className="text-primary hover:underline">Datasets</a></TableCell>
<TableCell className="font-medium"><a href="/docs/api-reference/datasets" className="text-primary hover:underline">Datasets</a></TableCell>
<TableCell>Create, list, and manage datasets</TableCell>
</TableRow>
<TableRow>
<TableCell><a href="/docs/api-reference/pipelines" className="text-primary hover:underline">Pipelines</a></TableCell>
<TableCell className="font-medium"><a href="/docs/api-reference/pipelines" className="text-primary hover:underline">Pipelines</a></TableCell>
<TableCell>Define and manage pipelines</TableCell>
</TableRow>
<TableRow>
<TableCell><a href="/docs/api-reference/executions" className="text-primary hover:underline">Executions</a></TableCell>
<TableCell className="font-medium"><a href="/docs/api-reference/executions" className="text-primary hover:underline">Executions</a></TableCell>
<TableCell>Trigger and monitor pipeline runs</TableCell>
</TableRow>
</TableBody>
Expand Down
10 changes: 5 additions & 5 deletions src/content/getting-started/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,23 +52,23 @@ Dataset → [Ingest] → [Clean] → [Validate] → [Transform] → [Augment]
</TableHeader>
<TableBody>
<TableRow>
<TableCell className="font-mono">ingest</TableCell>
<TableCell className="font-medium font-mono">ingest</TableCell>
<TableCell>Read data from a source (S3, database, API)</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">clean</TableCell>
<TableCell className="font-medium font-mono">clean</TableCell>
<TableCell>Remove nulls, normalize formats, fix types</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">validate</TableCell>
<TableCell className="font-medium font-mono">validate</TableCell>
<TableCell>Assert data quality rules</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">transform</TableCell>
<TableCell className="font-medium font-mono">transform</TableCell>
<TableCell>Reshape, join, aggregate data</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">augment</TableCell>
<TableCell className="font-medium font-mono">augment</TableCell>
<TableCell>Enrich with external data or ML predictions</TableCell>
</TableRow>
</TableBody>
Expand Down
34 changes: 17 additions & 17 deletions src/content/integrations/postgresql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -272,87 +272,87 @@ config:
</TableHeader>
<TableBody>
<TableRow>
<TableCell className="font-mono">INTEGER</TableCell>
<TableCell className="font-medium font-mono">INTEGER</TableCell>
<TableCell className="font-mono">integer</TableCell>
<TableCell>32-bit integer</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">BIGINT</TableCell>
<TableCell className="font-medium font-mono">BIGINT</TableCell>
<TableCell className="font-mono">long</TableCell>
<TableCell>64-bit integer</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">SMALLINT</TableCell>
<TableCell className="font-medium font-mono">SMALLINT</TableCell>
<TableCell className="font-mono">short</TableCell>
<TableCell>16-bit integer</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">DECIMAL/NUMERIC</TableCell>
<TableCell className="font-medium font-mono">DECIMAL/NUMERIC</TableCell>
<TableCell className="font-mono">decimal</TableCell>
<TableCell>Precision and scale preserved</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">REAL</TableCell>
<TableCell className="font-medium font-mono">REAL</TableCell>
<TableCell className="font-mono">float</TableCell>
<TableCell>Single precision</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">DOUBLE PRECISION</TableCell>
<TableCell className="font-medium font-mono">DOUBLE PRECISION</TableCell>
<TableCell className="font-mono">double</TableCell>
<TableCell>Double precision</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">BOOLEAN</TableCell>
<TableCell className="font-medium font-mono">BOOLEAN</TableCell>
<TableCell className="font-mono">boolean</TableCell>
<TableCell>True/False values</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">VARCHAR/TEXT</TableCell>
<TableCell className="font-medium font-mono">VARCHAR/TEXT</TableCell>
<TableCell className="font-mono">string</TableCell>
<TableCell>Variable length string</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">CHAR</TableCell>
<TableCell className="font-medium font-mono">CHAR</TableCell>
<TableCell className="font-mono">string</TableCell>
<TableCell>Fixed length string</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">DATE</TableCell>
<TableCell className="font-medium font-mono">DATE</TableCell>
<TableCell className="font-mono">date</TableCell>
<TableCell>Date without time</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">TIME</TableCell>
<TableCell className="font-medium font-mono">TIME</TableCell>
<TableCell className="font-mono">time</TableCell>
<TableCell>Time without date</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">TIMESTAMP</TableCell>
<TableCell className="font-medium font-mono">TIMESTAMP</TableCell>
<TableCell className="font-mono">timestamp</TableCell>
<TableCell>Timestamp without timezone</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">TIMESTAMPTZ</TableCell>
<TableCell className="font-medium font-mono">TIMESTAMPTZ</TableCell>
<TableCell className="font-mono">timestamp</TableCell>
<TableCell>Timestamp with timezone</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">UUID</TableCell>
<TableCell className="font-medium font-mono">UUID</TableCell>
<TableCell className="font-mono">string</TableCell>
<TableCell>UUID as string</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">JSON/JSONB</TableCell>
<TableCell className="font-medium font-mono">JSON/JSONB</TableCell>
<TableCell className="font-mono">object</TableCell>
<TableCell>JSON-like structure</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">ARRAY</TableCell>
<TableCell className="font-medium font-mono">ARRAY</TableCell>
<TableCell className="font-mono">array</TableCell>
<TableCell>Array of values</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">BYTEA</TableCell>
<TableCell className="font-medium font-mono">BYTEA</TableCell>
<TableCell className="font-mono">binary</TableCell>
<TableCell>Binary data</TableCell>
</TableRow>
Expand Down
24 changes: 12 additions & 12 deletions src/content/integrations/snowflake.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -275,62 +275,62 @@ config:
</TableHeader>
<TableBody>
<TableRow>
<TableCell className="font-mono">NUMBER</TableCell>
<TableCell className="font-medium font-mono">NUMBER</TableCell>
<TableCell className="font-mono">decimal</TableCell>
<TableCell>Precision and scale preserved</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">INTEGER</TableCell>
<TableCell className="font-medium font-mono">INTEGER</TableCell>
<TableCell className="font-mono">integer</TableCell>
<TableCell>32-bit integer</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">BIGINT</TableCell>
<TableCell className="font-medium font-mono">BIGINT</TableCell>
<TableCell className="font-mono">long</TableCell>
<TableCell>64-bit integer</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">FLOAT</TableCell>
<TableCell className="font-medium font-mono">FLOAT</TableCell>
<TableCell className="font-mono">double</TableCell>
<TableCell>Double precision</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">BOOLEAN</TableCell>
<TableCell className="font-medium font-mono">BOOLEAN</TableCell>
<TableCell className="font-mono">boolean</TableCell>
<TableCell>True/False values</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">VARCHAR</TableCell>
<TableCell className="font-medium font-mono">VARCHAR</TableCell>
<TableCell className="font-mono">string</TableCell>
<TableCell>Variable length string</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">DATE</TableCell>
<TableCell className="font-medium font-mono">DATE</TableCell>
<TableCell className="font-mono">date</TableCell>
<TableCell>Date without time</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">TIMESTAMP</TableCell>
<TableCell className="font-medium font-mono">TIMESTAMP</TableCell>
<TableCell className="font-mono">timestamp</TableCell>
<TableCell>Timestamp with timezone</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">TIMESTAMP_NTZ</TableCell>
<TableCell className="font-medium font-mono">TIMESTAMP_NTZ</TableCell>
<TableCell className="font-mono">timestamp</TableCell>
<TableCell>Timestamp without timezone</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">VARIANT</TableCell>
<TableCell className="font-medium font-mono">VARIANT</TableCell>
<TableCell className="font-mono">object</TableCell>
<TableCell>JSON-like structure</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">ARRAY</TableCell>
<TableCell className="font-medium font-mono">ARRAY</TableCell>
<TableCell className="font-mono">array</TableCell>
<TableCell>Array of values</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-mono">OBJECT</TableCell>
<TableCell className="font-medium font-mono">OBJECT</TableCell>
<TableCell className="font-mono">object</TableCell>
<TableCell>Key-value pairs</TableCell>
</TableRow>
Expand Down
8 changes: 4 additions & 4 deletions src/content/ml-services/outlier-detection.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -407,25 +407,25 @@ stages:
</TableHeader>
<TableBody>
<TableRow>
<TableCell>&lt; 10K rows</TableCell>
<TableCell className="font-medium">&lt; 10K rows</TableCell>
<TableCell>&lt; 10</TableCell>
<TableCell>Z-Score, IQR</TableCell>
<TableCell>Fast, simple</TableCell>
</TableRow>
<TableRow>
<TableCell>10K-1M rows</TableCell>
<TableCell className="font-medium">10K-1M rows</TableCell>
<TableCell>10-50</TableCell>
<TableCell>Isolation Forest</TableCell>
<TableCell>Efficient, accurate</TableCell>
</TableRow>
<TableRow>
<TableCell>1M-10M rows</TableCell>
<TableCell className="font-medium">1M-10M rows</TableCell>
<TableCell>50-100</TableCell>
<TableCell>Isolation Forest, LOF</TableCell>
<TableCell>Scalable</TableCell>
</TableRow>
<TableRow>
<TableCell>&gt; 10M rows</TableCell>
<TableCell className="font-medium">&gt; 10M rows</TableCell>
<TableCell>&gt; 100</TableCell>
<TableCell>Autoencoder, Ensemble</TableCell>
<TableCell>Complex patterns</TableCell>
Expand Down