mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-13 08:15:14 +02:00
docs: document duckdb support
This commit is contained in:
parent
460c6fae63
commit
099c605dc5
11 changed files with 86 additions and 7 deletions
|
|
@ -25,6 +25,7 @@ export const PUBLIC_BUNDLED_WORKSPACE_PACKAGES = [
|
|||
'@ktx/context',
|
||||
'@ktx/connector-bigquery',
|
||||
'@ktx/connector-clickhouse',
|
||||
'@ktx/connector-duckdb',
|
||||
'@ktx/connector-mysql',
|
||||
'@ktx/connector-postgres',
|
||||
'@ktx/connector-snowflake',
|
||||
|
|
@ -37,6 +38,7 @@ export const PUBLIC_BUNDLED_WORKSPACE_PACKAGE_ROOTS = {
|
|||
'@ktx/context': 'packages/context',
|
||||
'@ktx/connector-bigquery': 'packages/connector-bigquery',
|
||||
'@ktx/connector-clickhouse': 'packages/connector-clickhouse',
|
||||
'@ktx/connector-duckdb': 'packages/connector-duckdb',
|
||||
'@ktx/connector-mysql': 'packages/connector-mysql',
|
||||
'@ktx/connector-postgres': 'packages/connector-postgres',
|
||||
'@ktx/connector-snowflake': 'packages/connector-snowflake',
|
||||
|
|
|
|||
|
|
@ -152,6 +152,7 @@ describe('standalone example docs', () => {
|
|||
assert.match(contributing, /llm\/\s+# LLM client abstraction/);
|
||||
assert.match(contributing, /connector-bigquery\/\s+# BigQuery connector/);
|
||||
assert.match(contributing, /connector-clickhouse\/\s+# ClickHouse connector/);
|
||||
assert.match(contributing, /connector-duckdb\/\s+# DuckDB connector/);
|
||||
assert.match(contributing, /connector-mysql\/\s+# MySQL connector/);
|
||||
assert.match(contributing, /connector-postgres\/\s+# PostgreSQL connector/);
|
||||
assert.match(contributing, /connector-snowflake\/\s+# Snowflake connector/);
|
||||
|
|
@ -161,6 +162,12 @@ describe('standalone example docs', () => {
|
|||
assert.match(contributing, /ktx-daemon\/\s+# Daemon/);
|
||||
});
|
||||
|
||||
it('lists the DuckDB connector in the root package table', async () => {
|
||||
const readme = await readText('README.md');
|
||||
|
||||
assert.match(readme, /\| `packages\/connector-duckdb` \| DuckDB scan connector \|/);
|
||||
});
|
||||
|
||||
it('documents agent-facing CLI commands', async () => {
|
||||
const servingAgents = await readText('docs-site/content/docs/guides/serving-agents.mdx');
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ export const INTERNAL_NPM_WORKSPACE_PACKAGES = [
|
|||
{ name: '@ktx/llm', packageRoot: 'packages/llm' },
|
||||
{ name: '@ktx/connector-bigquery', packageRoot: 'packages/connector-bigquery' },
|
||||
{ name: '@ktx/connector-clickhouse', packageRoot: 'packages/connector-clickhouse' },
|
||||
{ name: '@ktx/connector-duckdb', packageRoot: 'packages/connector-duckdb' },
|
||||
{ name: '@ktx/connector-mysql', packageRoot: 'packages/connector-mysql' },
|
||||
{ name: '@ktx/connector-postgres', packageRoot: 'packages/connector-postgres' },
|
||||
{ name: '@ktx/connector-snowflake', packageRoot: 'packages/connector-snowflake' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue