From bdb080e617ed49da32167fa6bea84fd8c265b128 Mon Sep 17 00:00:00 2001 From: Siddhartha Sahu Date: Wed, 10 Sep 2025 11:51:59 -0400 Subject: [PATCH 1/3] Add missing descriptions --- src/content/docs/client-apis/c.mdx | 1 + src/content/docs/client-apis/cpp.mdx | 1 + src/content/docs/client-apis/elixir.mdx | 1 + src/content/docs/client-apis/go.mdx | 1 + src/content/docs/client-apis/index.mdx | 1 + src/content/docs/client-apis/java.mdx | 1 + src/content/docs/client-apis/net.mdx | 1 + src/content/docs/client-apis/nim.mdx | 1 + src/content/docs/client-apis/nodejs.mdx | 1 + src/content/docs/client-apis/python.mdx | 1 + src/content/docs/client-apis/ruby.mdx | 1 + src/content/docs/client-apis/rust.mdx | 1 + src/content/docs/client-apis/swift.mdx | 1 + src/content/docs/client-apis/wasm.mdx | 1 + src/content/docs/concurrency.md | 1 + src/content/docs/cypher/attach.md | 1 + src/content/docs/cypher/data-definition/index.mdx | 1 + .../docs/cypher/data-manipulation-clauses/example-database.md | 1 + src/content/docs/cypher/data-manipulation-clauses/index.mdx | 1 + .../docs/cypher/data-manipulation-clauses/read-after-update.md | 1 + src/content/docs/cypher/data-types/index.mdx | 1 + src/content/docs/cypher/data-types/list-and-array.md | 1 + src/content/docs/cypher/difference.md | 1 + src/content/docs/cypher/expressions/index.mdx | 1 + src/content/docs/cypher/index.md | 1 + src/content/docs/cypher/macro.md | 1 + src/content/docs/cypher/query-clauses/example-database.md | 1 + src/content/docs/cypher/query-clauses/index.mdx | 1 + src/content/docs/cypher/subquery.md | 1 + src/content/docs/cypher/transaction.md | 1 + src/content/docs/developer-guide/database-internal/datatype.md | 1 + src/content/docs/developer-guide/database-internal/execution.md | 1 + src/content/docs/developer-guide/database-internal/index.md | 1 + src/content/docs/developer-guide/database-internal/vector.md | 1 + src/content/docs/developer-guide/index.md | 1 + src/content/docs/developer-guide/performance-debugging.md | 1 + src/content/docs/developer-guide/testing-framework.md | 1 + src/content/docs/export/csv.md | 1 + src/content/docs/export/index.mdx | 1 + src/content/docs/export/json.md | 1 + src/content/docs/export/parquet.md | 1 + src/content/docs/extensions/algo/kcore.mdx | 1 + src/content/docs/extensions/algo/louvain.mdx | 1 + src/content/docs/extensions/algo/pagerank.mdx | 1 + src/content/docs/extensions/algo/path.mdx | 1 + src/content/docs/extensions/algo/scc.mdx | 1 + src/content/docs/extensions/algo/wcc.mdx | 1 + src/content/docs/extensions/attach/delta.md | 1 + src/content/docs/extensions/attach/duckdb.mdx | 1 + src/content/docs/extensions/attach/iceberg.md | 1 + src/content/docs/extensions/attach/index.mdx | 1 + src/content/docs/extensions/attach/kuzu.md | 1 + src/content/docs/extensions/attach/postgres.mdx | 1 + src/content/docs/extensions/attach/rdbms.mdx | 1 + src/content/docs/extensions/attach/sqlite.mdx | 1 + src/content/docs/extensions/attach/unity.md | 1 + src/content/docs/extensions/azure.mdx | 1 + src/content/docs/extensions/full-text-search.mdx | 1 + src/content/docs/extensions/index.mdx | 1 + src/content/docs/extensions/json.mdx | 1 + src/content/docs/extensions/llm.mdx | 1 + src/content/docs/extensions/neo4j.mdx | 1 + src/content/docs/extensions/vector.mdx | 1 + src/content/docs/get-started/cypher-intro.mdx | 1 + src/content/docs/get-started/graph-algorithms.md | 1 + src/content/docs/get-started/index.mdx | 1 + src/content/docs/get-started/prepared-statements.mdx | 1 + src/content/docs/get-started/scan.mdx | 1 + src/content/docs/import/copy-from-dataframe.mdx | 1 + src/content/docs/import/copy-from-json.md | 1 + src/content/docs/import/copy-from-subquery.md | 1 + src/content/docs/import/csv.md | 1 + src/content/docs/import/index.mdx | 1 + src/content/docs/import/merge.md | 1 + src/content/docs/import/npy.md | 1 + src/content/docs/import/parquet.md | 1 + src/content/docs/installation.mdx | 1 + src/content/docs/migrate/index.md | 1 + src/content/docs/system-requirements.md | 1 + src/content/docs/tutorials/cypher/index.mdx | 1 + src/content/docs/tutorials/example-database.md | 1 + src/content/docs/tutorials/index.mdx | 1 + src/content/docs/tutorials/python/index.mdx | 1 + src/content/docs/tutorials/rust/index.mdx | 1 + src/content/docs/visualization/kuzu-explorer/import-panel.md | 1 + src/content/docs/visualization/kuzu-explorer/index.mdx | 1 + src/content/docs/visualization/kuzu-explorer/query-panel.md | 1 + src/content/docs/visualization/kuzu-explorer/schema-panel.md | 1 + src/content/docs/visualization/kuzu-explorer/settings-panel.md | 1 + 89 files changed, 89 insertions(+) diff --git a/src/content/docs/client-apis/c.mdx b/src/content/docs/client-apis/c.mdx index 9213745c..563d86ef 100644 --- a/src/content/docs/client-apis/c.mdx +++ b/src/content/docs/client-apis/c.mdx @@ -1,5 +1,6 @@ --- title: C API +description: "Use Kuzu embedded graph database in C applications with the official C API" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/cpp.mdx b/src/content/docs/client-apis/cpp.mdx index a5740e79..88d60109 100644 --- a/src/content/docs/client-apis/cpp.mdx +++ b/src/content/docs/client-apis/cpp.mdx @@ -1,5 +1,6 @@ --- title: C++ +description: "Use Kuzu embedded graph database in C++ applications with the official C++ API" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/elixir.mdx b/src/content/docs/client-apis/elixir.mdx index d502fb07..f790bbbf 100644 --- a/src/content/docs/client-apis/elixir.mdx +++ b/src/content/docs/client-apis/elixir.mdx @@ -1,5 +1,6 @@ --- title: Kuzu NIF for Elixir +description: "Use Kuzu graph database in Elixir applications through Native Implemented Functions (NIF)" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/go.mdx b/src/content/docs/client-apis/go.mdx index b13bcf4c..53f98fd1 100644 --- a/src/content/docs/client-apis/go.mdx +++ b/src/content/docs/client-apis/go.mdx @@ -1,5 +1,6 @@ --- title: Go API +description: "Use Kuzu embedded graph database in Go applications with the official Go API" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/index.mdx b/src/content/docs/client-apis/index.mdx index 727d871c..50122eb1 100644 --- a/src/content/docs/client-apis/index.mdx +++ b/src/content/docs/client-apis/index.mdx @@ -1,5 +1,6 @@ --- title: "Client APIs" +description: "Official and community client libraries for integrating Kuzu graph database into your applications" --- import { LinkCard, CardGrid} from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/java.mdx b/src/content/docs/client-apis/java.mdx index b20209b2..0947974a 100644 --- a/src/content/docs/client-apis/java.mdx +++ b/src/content/docs/client-apis/java.mdx @@ -1,5 +1,6 @@ --- title: Java API +description: "Use Kuzu embedded graph database in Java applications with the official Java API" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/net.mdx b/src/content/docs/client-apis/net.mdx index 887b753a..50c73647 100644 --- a/src/content/docs/client-apis/net.mdx +++ b/src/content/docs/client-apis/net.mdx @@ -1,5 +1,6 @@ --- title: .NET DLL wrapper +description: "Use Kuzu graph database in .NET applications with the community-contributed DLL wrapper" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/nim.mdx b/src/content/docs/client-apis/nim.mdx index 65215a8d..0e3e519d 100644 --- a/src/content/docs/client-apis/nim.mdx +++ b/src/content/docs/client-apis/nim.mdx @@ -1,5 +1,6 @@ --- title: Nim API +description: "Use Kuzu graph database in Nim applications with the community-contributed Nim client" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/nodejs.mdx b/src/content/docs/client-apis/nodejs.mdx index 2eed3c03..625a6f07 100644 --- a/src/content/docs/client-apis/nodejs.mdx +++ b/src/content/docs/client-apis/nodejs.mdx @@ -1,5 +1,6 @@ --- title: Node.js API +description: "Use Kuzu embedded graph database in Node.js applications with the official Node.js API" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/python.mdx b/src/content/docs/client-apis/python.mdx index 362b4e55..8df978d0 100644 --- a/src/content/docs/client-apis/python.mdx +++ b/src/content/docs/client-apis/python.mdx @@ -1,5 +1,6 @@ --- title: Python API +description: "Use Kuzu embedded graph database in Python applications with the official Python API" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/ruby.mdx b/src/content/docs/client-apis/ruby.mdx index 5e802dbe..7352fb19 100644 --- a/src/content/docs/client-apis/ruby.mdx +++ b/src/content/docs/client-apis/ruby.mdx @@ -1,5 +1,6 @@ --- title: Ruby API +description: "Use Kuzu graph database in Ruby applications with the community-contributed Ruby client" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/rust.mdx b/src/content/docs/client-apis/rust.mdx index 67e54927..528f43a9 100644 --- a/src/content/docs/client-apis/rust.mdx +++ b/src/content/docs/client-apis/rust.mdx @@ -1,5 +1,6 @@ --- title: Rust API +description: "Use Kuzu embedded graph database in Rust applications with the official Rust crate" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/swift.mdx b/src/content/docs/client-apis/swift.mdx index ff567c63..4722e6e1 100644 --- a/src/content/docs/client-apis/swift.mdx +++ b/src/content/docs/client-apis/swift.mdx @@ -1,5 +1,6 @@ --- title: Swift API +description: "Use Kuzu embedded graph database in Swift applications with the official Swift API" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/client-apis/wasm.mdx b/src/content/docs/client-apis/wasm.mdx index fd2cec3a..9f773804 100644 --- a/src/content/docs/client-apis/wasm.mdx +++ b/src/content/docs/client-apis/wasm.mdx @@ -1,5 +1,6 @@ --- title: WebAssembly (Wasm) +description: "Run Kuzu graph database in web browsers using WebAssembly for client-side graph processing" --- [WebAssembly](https://webassembly.org/), a.k.a. _Wasm_, is a standard defining any suitable low-level diff --git a/src/content/docs/concurrency.md b/src/content/docs/concurrency.md index 84fbf2b2..70d9895d 100644 --- a/src/content/docs/concurrency.md +++ b/src/content/docs/concurrency.md @@ -1,5 +1,6 @@ --- title: "Connections & Concurrency" +description: "Understanding Kuzu's concurrency model, connection handling, and best practices for parallel access" --- :::caution[Note] diff --git a/src/content/docs/cypher/attach.md b/src/content/docs/cypher/attach.md index 7e7c49e5..44a252c3 100644 --- a/src/content/docs/cypher/attach.md +++ b/src/content/docs/cypher/attach.md @@ -1,5 +1,6 @@ --- title: Attach/Detach to External Databases +description: "Connect to external Kuzu databases and other DBMSs for cross-database queries" --- Using the `ATTACH` statement, you can connect to external Kuzu databases as well as several relational DBMSs. These directories or files of external databases can be either local or in a remote file system. Here is a simple diff --git a/src/content/docs/cypher/data-definition/index.mdx b/src/content/docs/cypher/data-definition/index.mdx index b6025c1e..610f6f38 100644 --- a/src/content/docs/cypher/data-definition/index.mdx +++ b/src/content/docs/cypher/data-definition/index.mdx @@ -1,5 +1,6 @@ --- title: Data definition language +description: "Commands to create, alter, and delete database objects including node and relationship tables" --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/cypher/data-manipulation-clauses/example-database.md b/src/content/docs/cypher/data-manipulation-clauses/example-database.md index ea486da9..140efc16 100644 --- a/src/content/docs/cypher/data-manipulation-clauses/example-database.md +++ b/src/content/docs/cypher/data-manipulation-clauses/example-database.md @@ -1,5 +1,6 @@ --- title: Example database +description: "Sample graph dataset with User and City nodes used in documentation examples" --- We use the following example graph dataset that diff --git a/src/content/docs/cypher/data-manipulation-clauses/index.mdx b/src/content/docs/cypher/data-manipulation-clauses/index.mdx index 9f06e43b..93cdc9a1 100644 --- a/src/content/docs/cypher/data-manipulation-clauses/index.mdx +++ b/src/content/docs/cypher/data-manipulation-clauses/index.mdx @@ -1,5 +1,6 @@ --- title: Data manipulation clauses +description: "CREATE, SET, DELETE, and MERGE commands for modifying graph data" --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/cypher/data-manipulation-clauses/read-after-update.md b/src/content/docs/cypher/data-manipulation-clauses/read-after-update.md index 04c5a74d..47c37763 100644 --- a/src/content/docs/cypher/data-manipulation-clauses/read-after-update.md +++ b/src/content/docs/cypher/data-manipulation-clauses/read-after-update.md @@ -1,5 +1,6 @@ --- title: RETURN After Update +description: "Access and return data immediately after CREATE, MERGE, SET, or DELETE operations" --- The `RETURN` clause following an update clause has access to the variables that are used in the immediately preceding update clause. diff --git a/src/content/docs/cypher/data-types/index.mdx b/src/content/docs/cypher/data-types/index.mdx index db9904ba..e4bdfb02 100644 --- a/src/content/docs/cypher/data-types/index.mdx +++ b/src/content/docs/cypher/data-types/index.mdx @@ -1,5 +1,6 @@ --- title: Data types +description: "Primitive and nested data types supported in Kuzu for properties and expressions" --- import { LinkCard, CardGrid } from '@astrojs/starlight/components'; diff --git a/src/content/docs/cypher/data-types/list-and-array.md b/src/content/docs/cypher/data-types/list-and-array.md index c93e54ca..cf27d1ea 100644 --- a/src/content/docs/cypher/data-types/list-and-array.md +++ b/src/content/docs/cypher/data-types/list-and-array.md @@ -1,5 +1,6 @@ --- title: LIST and ARRAY +description: "Variable-length LIST and fixed-length ARRAY data types for storing collections" --- Kuzu supports two list-like data types: (i) variable-length lists, simply called `LIST`, and (ii) diff --git a/src/content/docs/cypher/difference.md b/src/content/docs/cypher/difference.md index 18318528..ca2e4a18 100644 --- a/src/content/docs/cypher/difference.md +++ b/src/content/docs/cypher/difference.md @@ -1,5 +1,6 @@ --- title: Differences between Kuzu and Neo4j +description: "Key differences in syntax, schema requirements, and features between Kuzu and Neo4j" --- If you're coming over from Neo4j, you can find the differences from Neo4j's keywords and syntax diff --git a/src/content/docs/cypher/expressions/index.mdx b/src/content/docs/cypher/expressions/index.mdx index bddfe3e5..15d66ef1 100644 --- a/src/content/docs/cypher/expressions/index.mdx +++ b/src/content/docs/cypher/expressions/index.mdx @@ -1,5 +1,6 @@ --- title: Functions, expressions & operators +description: "Built-in functions, expressions, and operators for data manipulation and computation" --- import { LinkCard, CardGrid } from '@astrojs/starlight/components'; diff --git a/src/content/docs/cypher/index.md b/src/content/docs/cypher/index.md index 90cf081d..53b506c2 100644 --- a/src/content/docs/cypher/index.md +++ b/src/content/docs/cypher/index.md @@ -1,5 +1,6 @@ --- title: Cypher manual +description: High-level property graph query language manual with syntax, clauses, and features for graph database queries. --- Cypher is a high-level query language for the property graph data model. diff --git a/src/content/docs/cypher/macro.md b/src/content/docs/cypher/macro.md index 5b297550..e4b6cd50 100644 --- a/src/content/docs/cypher/macro.md +++ b/src/content/docs/cypher/macro.md @@ -1,5 +1,6 @@ --- title: Create macros +description: "Define reusable Cypher expressions with parameters and default values using macros" --- Kuzu allows you to define macros via custom C++ code in the catalog using the `create macro` statement. diff --git a/src/content/docs/cypher/query-clauses/example-database.md b/src/content/docs/cypher/query-clauses/example-database.md index 7a041f06..bcea1a9c 100644 --- a/src/content/docs/cypher/query-clauses/example-database.md +++ b/src/content/docs/cypher/query-clauses/example-database.md @@ -1,5 +1,6 @@ --- title: Example database +description: "Sample graph dataset with User and City nodes used in query clause examples" --- We use the following example graph dataset that diff --git a/src/content/docs/cypher/query-clauses/index.mdx b/src/content/docs/cypher/query-clauses/index.mdx index ce8e6795..642ee455 100644 --- a/src/content/docs/cypher/query-clauses/index.mdx +++ b/src/content/docs/cypher/query-clauses/index.mdx @@ -1,5 +1,6 @@ --- title: Query clauses +description: "Core Cypher clauses for pattern matching, filtering, aggregation and result manipulation" --- import { LinkCard, CardGrid } from '@astrojs/starlight/components'; diff --git a/src/content/docs/cypher/subquery.md b/src/content/docs/cypher/subquery.md index 08eb7b2c..00f4f269 100644 --- a/src/content/docs/cypher/subquery.md +++ b/src/content/docs/cypher/subquery.md @@ -1,5 +1,6 @@ --- title: Subqueries +description: "Use EXISTS and COUNT subqueries to check patterns and aggregate results within queries" --- A subquery is a query that's called from an enclosing outer query, and executes within its own scope. diff --git a/src/content/docs/cypher/transaction.md b/src/content/docs/cypher/transaction.md index c9d63fc0..f45f1a1f 100644 --- a/src/content/docs/cypher/transaction.md +++ b/src/content/docs/cypher/transaction.md @@ -1,5 +1,6 @@ --- title: Transactions +description: "ACID-compliant transaction management with atomic, durable, and serializable operations" --- Kuzu implements a transaction management subsystem that is atomic, durable and supports serializability. diff --git a/src/content/docs/developer-guide/database-internal/datatype.md b/src/content/docs/developer-guide/database-internal/datatype.md index e6e50566..59b68682 100644 --- a/src/content/docs/developer-guide/database-internal/datatype.md +++ b/src/content/docs/developer-guide/database-internal/datatype.md @@ -1,5 +1,6 @@ --- title: Data type classes +description: "Understanding LogicalType and PhysicalType classes in Kuzu's internal architecture" --- There are two data type classes in Kuzu, `LogicalType` and `PhysicalType`. diff --git a/src/content/docs/developer-guide/database-internal/execution.md b/src/content/docs/developer-guide/database-internal/execution.md index 1a475db5..1cc70ec9 100644 --- a/src/content/docs/developer-guide/database-internal/execution.md +++ b/src/content/docs/developer-guide/database-internal/execution.md @@ -1,5 +1,6 @@ --- title: Execution +description: "Query execution architecture including pipeline decomposition and morsel-driven parallelism" --- ## Pipeline diff --git a/src/content/docs/developer-guide/database-internal/index.md b/src/content/docs/developer-guide/database-internal/index.md index 4764b0b5..d0df9ce3 100644 --- a/src/content/docs/developer-guide/database-internal/index.md +++ b/src/content/docs/developer-guide/database-internal/index.md @@ -1,5 +1,6 @@ --- title: Database internals +description: "Architecture overview of Kuzu's internal modules including parser, binder, planner, and storage" --- ## Database modules diff --git a/src/content/docs/developer-guide/database-internal/vector.md b/src/content/docs/developer-guide/database-internal/vector.md index 2a3d42b7..2d4f811f 100644 --- a/src/content/docs/developer-guide/database-internal/vector.md +++ b/src/content/docs/developer-guide/database-internal/vector.md @@ -1,5 +1,6 @@ --- title: Vector types +description: "Kuzu's column-oriented in-memory data structures for efficient data processing" --- ## ValueVector diff --git a/src/content/docs/developer-guide/index.md b/src/content/docs/developer-guide/index.md index e69e0546..d923d152 100644 --- a/src/content/docs/developer-guide/index.md +++ b/src/content/docs/developer-guide/index.md @@ -1,5 +1,6 @@ --- title: Build Kuzu from source +description: Developer guide for building Kuzu from source code with CMake, Python, and C++20 compiler requirements. --- :::caution[Note] diff --git a/src/content/docs/developer-guide/performance-debugging.md b/src/content/docs/developer-guide/performance-debugging.md index 4edd0585..dd20bb4e 100644 --- a/src/content/docs/developer-guide/performance-debugging.md +++ b/src/content/docs/developer-guide/performance-debugging.md @@ -1,5 +1,6 @@ --- title: Performance Debugging +description: "Use EXPLAIN and PROFILE commands to debug query performance and view execution plans" --- To see the query plans that Kuzu uses, you can diff --git a/src/content/docs/developer-guide/testing-framework.md b/src/content/docs/developer-guide/testing-framework.md index 0a74dc71..0197d8e5 100644 --- a/src/content/docs/developer-guide/testing-framework.md +++ b/src/content/docs/developer-guide/testing-framework.md @@ -1,5 +1,6 @@ --- title: Testing framework +description: "End-to-end testing framework for Kuzu using Cypher statements and .test files" --- ## Introduction diff --git a/src/content/docs/export/csv.md b/src/content/docs/export/csv.md index cf40038a..b940c9f2 100644 --- a/src/content/docs/export/csv.md +++ b/src/content/docs/export/csv.md @@ -1,5 +1,6 @@ --- title: Export CSV +description: Export query results to CSV files with customizable formatting options including headers, delimiters, and quotes. --- The `COPY TO` clause can export query results to a CSV file and is used as follows: diff --git a/src/content/docs/export/index.mdx b/src/content/docs/export/index.mdx index 3a15e085..6cddb243 100644 --- a/src/content/docs/export/index.mdx +++ b/src/content/docs/export/index.mdx @@ -1,5 +1,6 @@ --- title: Export data +description: Export query results from Kuzu to CSV, Parquet, and JSON file formats using the COPY TO command. --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/export/json.md b/src/content/docs/export/json.md index bfd4dece..5ca0d12e 100644 --- a/src/content/docs/export/json.md +++ b/src/content/docs/export/json.md @@ -1,5 +1,6 @@ --- title: Export to JSON +description: Export query results to JSON files with support for nested data structures using the JSON extension. --- The `COPY TO` clause can export query results to a JSON file. To use this feature, you have to install the diff --git a/src/content/docs/export/parquet.md b/src/content/docs/export/parquet.md index d92afab9..478d4a41 100644 --- a/src/content/docs/export/parquet.md +++ b/src/content/docs/export/parquet.md @@ -1,5 +1,6 @@ --- title: Export Parquet +description: Export query results to Apache Parquet files with compression support for efficient columnar storage. --- The `COPY TO` clause can export query results to a Parquet file. It can be combined with a subquery diff --git a/src/content/docs/extensions/algo/kcore.mdx b/src/content/docs/extensions/algo/kcore.mdx index f9e59e08..75480e2f 100644 --- a/src/content/docs/extensions/algo/kcore.mdx +++ b/src/content/docs/extensions/algo/kcore.mdx @@ -1,5 +1,6 @@ --- title: K-Core Decomposition +description: Find cohesive subgraphs where each node has at least k connections using the K-Core Decomposition algorithm. --- K-Core Decomposition identifies subgraphs where every node has a degree of at least `k`. diff --git a/src/content/docs/extensions/algo/louvain.mdx b/src/content/docs/extensions/algo/louvain.mdx index 602b8f8c..a3994ead 100644 --- a/src/content/docs/extensions/algo/louvain.mdx +++ b/src/content/docs/extensions/algo/louvain.mdx @@ -1,5 +1,6 @@ --- title: Louvain +description: Detect communities in large networks by maximizing modularity score using the hierarchical Louvain algorithm. --- The Louvain algorithm extracts communities from large networks by maximizing their diff --git a/src/content/docs/extensions/algo/pagerank.mdx b/src/content/docs/extensions/algo/pagerank.mdx index 7a7f3248..788a51ad 100644 --- a/src/content/docs/extensions/algo/pagerank.mdx +++ b/src/content/docs/extensions/algo/pagerank.mdx @@ -1,5 +1,6 @@ --- title: PageRank +description: Rank node importance in networks by analyzing connections and link structure using the PageRank algorithm. --- The PageRank algorithm ranks nodes in a network based on their importance by analyzing the connections diff --git a/src/content/docs/extensions/algo/path.mdx b/src/content/docs/extensions/algo/path.mdx index 5bf5db73..bccbcc0d 100644 --- a/src/content/docs/extensions/algo/path.mdx +++ b/src/content/docs/extensions/algo/path.mdx @@ -1,5 +1,6 @@ --- title: Shortest Paths +description: Compute shortest paths and weighted shortest paths between nodes using pattern matching in Cypher queries. --- Kuzu supports shortest path and weighted shortest path through [pattern matching](/cypher/query-clauses/match#shortest-path). diff --git a/src/content/docs/extensions/algo/scc.mdx b/src/content/docs/extensions/algo/scc.mdx index 81d13aef..64ad7c2f 100644 --- a/src/content/docs/extensions/algo/scc.mdx +++ b/src/content/docs/extensions/algo/scc.mdx @@ -1,5 +1,6 @@ --- title: Strongly Connected Components +description: Identify maximal subgraphs with mutual reachability using parallel BFS or DFS-based SCC algorithms. --- A strongly connected component (SCC) in a directed graph is a maximal subgraph where every pair of diff --git a/src/content/docs/extensions/algo/wcc.mdx b/src/content/docs/extensions/algo/wcc.mdx index 769ee92b..a070d596 100644 --- a/src/content/docs/extensions/algo/wcc.mdx +++ b/src/content/docs/extensions/algo/wcc.mdx @@ -1,5 +1,6 @@ --- title: Weakly Connected Components +description: Find connected components in directed graphs by treating edges as undirected using WCC algorithm. --- Weak connectivity is a notion defined on undirected graphs. The weakly connected components (WCC) of an diff --git a/src/content/docs/extensions/attach/delta.md b/src/content/docs/extensions/attach/delta.md index 62cd0fcf..cee11241 100644 --- a/src/content/docs/extensions/attach/delta.md +++ b/src/content/docs/extensions/attach/delta.md @@ -1,5 +1,6 @@ --- title: "Delta Lake extension" +description: Scan and copy from Delta Lake tables using the delta extension with support for local and S3-hosted data. --- The `delta` extension adds support for scanning/copying from the [`Delta Lake format`](https://delta.io/). diff --git a/src/content/docs/extensions/attach/duckdb.mdx b/src/content/docs/extensions/attach/duckdb.mdx index 626bea1b..28b9d0da 100644 --- a/src/content/docs/extensions/attach/duckdb.mdx +++ b/src/content/docs/extensions/attach/duckdb.mdx @@ -1,5 +1,6 @@ --- title: DuckDB extension +description: Attach to DuckDB databases for seamless data scanning and importing with comprehensive type mapping support. --- The `duckdb` extension allows you to [attach](/extensions/attach/rdbms) DuckDB databases to Kuzu. diff --git a/src/content/docs/extensions/attach/iceberg.md b/src/content/docs/extensions/attach/iceberg.md index e8c44d54..a397f846 100644 --- a/src/content/docs/extensions/attach/iceberg.md +++ b/src/content/docs/extensions/attach/iceberg.md @@ -1,5 +1,6 @@ --- title: "Iceberg extension" +description: Scan and copy from Apache Iceberg tables with metadata access and snapshot management capabilities. --- The `iceberg` extension adds support for scanning and copying from the [Apache Iceberg format](https://iceberg.apache.org/). diff --git a/src/content/docs/extensions/attach/index.mdx b/src/content/docs/extensions/attach/index.mdx index 970a848a..d6d38d86 100644 --- a/src/content/docs/extensions/attach/index.mdx +++ b/src/content/docs/extensions/attach/index.mdx @@ -1,5 +1,6 @@ --- title: Tabular data sources +description: Attach to external databases and data sources including PostgreSQL, DuckDB, SQLite, Delta Lake, and Iceberg tables. --- import { Tabs, TabItem } from '@astrojs/starlight/components'; diff --git a/src/content/docs/extensions/attach/kuzu.md b/src/content/docs/extensions/attach/kuzu.md index 8254f285..166d27a0 100644 --- a/src/content/docs/extensions/attach/kuzu.md +++ b/src/content/docs/extensions/attach/kuzu.md @@ -1,5 +1,6 @@ --- title: External Kuzu databases +description: Attach to external Kuzu databases for read-only querying of local and remote database instances. --- Using the `ATTACH` statement, you can connect to an external Kuzu database. The external Kuzu database can be local or remote, for example, diff --git a/src/content/docs/extensions/attach/postgres.mdx b/src/content/docs/extensions/attach/postgres.mdx index b6ffe6a7..58c9f70d 100644 --- a/src/content/docs/extensions/attach/postgres.mdx +++ b/src/content/docs/extensions/attach/postgres.mdx @@ -1,5 +1,6 @@ --- title: PostgreSQL extension +description: Connect to PostgreSQL databases for scanning tables and importing data with SQL query support. --- The `postgres` extension allows you to [attach](/extensions/attach/rdbms) PostgreSQL databases to Kuzu. diff --git a/src/content/docs/extensions/attach/rdbms.mdx b/src/content/docs/extensions/attach/rdbms.mdx index ecad2a59..16753a05 100644 --- a/src/content/docs/extensions/attach/rdbms.mdx +++ b/src/content/docs/extensions/attach/rdbms.mdx @@ -1,5 +1,6 @@ --- title: Attaching external RDBMS systems +description: Overview of relational database extensions for connecting to PostgreSQL, DuckDB, and SQLite databases. --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/extensions/attach/sqlite.mdx b/src/content/docs/extensions/attach/sqlite.mdx index f415aea7..541feaa4 100644 --- a/src/content/docs/extensions/attach/sqlite.mdx +++ b/src/content/docs/extensions/attach/sqlite.mdx @@ -1,5 +1,6 @@ --- title: SQLite extension +description: Attach to SQLite databases for scanning and importing data with dynamic type system support. --- The `sqlite` extension allows you to [attach](/extensions/attach/rdbms) SQLite databases to Kuzu. diff --git a/src/content/docs/extensions/attach/unity.md b/src/content/docs/extensions/attach/unity.md index 39a9bbcc..82ec113c 100644 --- a/src/content/docs/extensions/attach/unity.md +++ b/src/content/docs/extensions/attach/unity.md @@ -1,5 +1,6 @@ --- title: Unity Catalog extension +description: Scan Delta Lake tables registered in Unity Catalog for lakehouse data integration (experimental feature). --- This extension adds the ability to directly scan from delta tables registered in a Unity Catalog using the `LOAD FROM` statement. diff --git a/src/content/docs/extensions/azure.mdx b/src/content/docs/extensions/azure.mdx index a3cfa628..e3f0cf8c 100644 --- a/src/content/docs/extensions/azure.mdx +++ b/src/content/docs/extensions/azure.mdx @@ -1,5 +1,6 @@ --- title: "Azure extension" +description: "Scan and query data from Azure Blob Storage and Azure Data Lake Storage" --- The `azure` extension allows you to scan data from [Azure Blob Storage](https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blobs-overview) and [Azure Data Lake Storage (ADLS)](https://learn.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-introduction). diff --git a/src/content/docs/extensions/full-text-search.mdx b/src/content/docs/extensions/full-text-search.mdx index bbffd13f..535231af 100644 --- a/src/content/docs/extensions/full-text-search.mdx +++ b/src/content/docs/extensions/full-text-search.mdx @@ -1,5 +1,6 @@ --- title: "Full-text search extension" +description: "Build indexes on string properties for efficient text search with similarity scoring" --- The full-text search (`FTS`) extension can be used to efficiently search within the contents of diff --git a/src/content/docs/extensions/index.mdx b/src/content/docs/extensions/index.mdx index 9cf4444f..1f199766 100644 --- a/src/content/docs/extensions/index.mdx +++ b/src/content/docs/extensions/index.mdx @@ -1,5 +1,6 @@ --- title: Extensions +description: Dynamically extend Kuzu's capabilities with official extensions for JSON, vector search, full-text search, and more. --- Kuzu has an extension API that is designed to dynamically extend its capabilities. Extensions allow diff --git a/src/content/docs/extensions/json.mdx b/src/content/docs/extensions/json.mdx index 876b2801..c9701262 100644 --- a/src/content/docs/extensions/json.mdx +++ b/src/content/docs/extensions/json.mdx @@ -1,5 +1,6 @@ --- title: "JSON extension" +description: "Work with JSON data including functions for access, manipulation, and file operations" --- import { Tabs, TabItem } from '@astrojs/starlight/components'; diff --git a/src/content/docs/extensions/llm.mdx b/src/content/docs/extensions/llm.mdx index 21dcaafd..311e5605 100644 --- a/src/content/docs/extensions/llm.mdx +++ b/src/content/docs/extensions/llm.mdx @@ -1,5 +1,6 @@ --- title: "LLM extension" +description: "Run LLM-based workflows and create embeddings directly within Kuzu using Cypher" --- import { Tabs, TabItem } from '@astrojs/starlight/components'; diff --git a/src/content/docs/extensions/neo4j.mdx b/src/content/docs/extensions/neo4j.mdx index d0e08a27..425aae87 100644 --- a/src/content/docs/extensions/neo4j.mdx +++ b/src/content/docs/extensions/neo4j.mdx @@ -1,5 +1,6 @@ --- title: "Neo4j extension" +description: "Migrate your Neo4j graph database data directly into Kuzu" --- import { Tabs, TabItem } from '@astrojs/starlight/components'; diff --git a/src/content/docs/extensions/vector.mdx b/src/content/docs/extensions/vector.mdx index cadda585..74e121e9 100644 --- a/src/content/docs/extensions/vector.mdx +++ b/src/content/docs/extensions/vector.mdx @@ -1,5 +1,6 @@ --- title: "Vector search extension" +description: "Native disk-based HNSW index for fast similarity search over vector embeddings" --- import { Tabs, TabItem } from '@astrojs/starlight/components'; diff --git a/src/content/docs/get-started/cypher-intro.mdx b/src/content/docs/get-started/cypher-intro.mdx index 7fd5e81d..b86d0645 100644 --- a/src/content/docs/get-started/cypher-intro.mdx +++ b/src/content/docs/get-started/cypher-intro.mdx @@ -1,5 +1,6 @@ --- title: "Query and visualize your graph" +description: "Learn how to query graphs using Cypher and visualize results in Kuzu" --- Cypher is a declarative query language for graphs, and should be easy to get started with for diff --git a/src/content/docs/get-started/graph-algorithms.md b/src/content/docs/get-started/graph-algorithms.md index 28905ed4..6b77845a 100644 --- a/src/content/docs/get-started/graph-algorithms.md +++ b/src/content/docs/get-started/graph-algorithms.md @@ -1,5 +1,6 @@ --- title: "Run graph algorithms" +description: "Execute graph algorithms in Kuzu using the algo extension or NetworkX integration" --- Network analysis is a field of data science and graph theory focused on understanding the connections and interactions between entities in a graph. By examining the structure and dynamics of these networks, analysts can reveal important properties such as influential nodes, community structures, and information flow. Applications of network analysis span diverse areas, including identifying key players in social networks, detecting fraud in financial systems, optimizing transportation routes, and mapping the spread of diseases in healthcare. diff --git a/src/content/docs/get-started/index.mdx b/src/content/docs/get-started/index.mdx index 54840413..4e5a1417 100644 --- a/src/content/docs/get-started/index.mdx +++ b/src/content/docs/get-started/index.mdx @@ -1,5 +1,6 @@ --- title: "Create your first graph" +description: "Get started with Kuzu by creating your first graph database and running basic queries" ---
diff --git a/src/content/docs/get-started/prepared-statements.mdx b/src/content/docs/get-started/prepared-statements.mdx index b3eab192..3a5d866e 100644 --- a/src/content/docs/get-started/prepared-statements.mdx +++ b/src/content/docs/get-started/prepared-statements.mdx @@ -1,5 +1,6 @@ --- title: "Run prepared Cypher statements" +description: "Use parameterized queries to prevent Cypher injection and improve query performance" --- import { Tabs, TabItem } from '@astrojs/starlight/components'; diff --git a/src/content/docs/get-started/scan.mdx b/src/content/docs/get-started/scan.mdx index 38afff2d..6cb0e90d 100644 --- a/src/content/docs/get-started/scan.mdx +++ b/src/content/docs/get-started/scan.mdx @@ -1,5 +1,6 @@ --- title: "Scan data from various sources" +description: "Use LOAD FROM to scan and inspect data from CSV, JSON, Parquet and other sources before importing" --- import { LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/import/copy-from-dataframe.mdx b/src/content/docs/import/copy-from-dataframe.mdx index fc1b8259..e00938ff 100644 --- a/src/content/docs/import/copy-from-dataframe.mdx +++ b/src/content/docs/import/copy-from-dataframe.mdx @@ -1,5 +1,6 @@ --- title: "Copy from dataframes" +description: Import data directly from Pandas and Polars DataFrames or PyArrow tables into Kuzu using COPY FROM commands. --- You can copy from Pandas/Polars dataframes or in-memory Arrow tables directly into Kuzu using the `COPY FROM` command. diff --git a/src/content/docs/import/copy-from-json.md b/src/content/docs/import/copy-from-json.md index 7055493f..e514e508 100644 --- a/src/content/docs/import/copy-from-json.md +++ b/src/content/docs/import/copy-from-json.md @@ -1,5 +1,6 @@ --- title: "Copy from JSON" +description: Bulk import data from JSON files into Kuzu node and relationship tables using the JSON extension. --- ## JSON files diff --git a/src/content/docs/import/copy-from-subquery.md b/src/content/docs/import/copy-from-subquery.md index db20cfc6..a5577a32 100644 --- a/src/content/docs/import/copy-from-subquery.md +++ b/src/content/docs/import/copy-from-subquery.md @@ -1,5 +1,6 @@ --- title: Copy from subquery +description: Bulk import data from MATCH queries or LOAD FROM scans using subqueries in COPY FROM statements. --- You can bulk import the results of a subquery like `MATCH ....` by attaching diff --git a/src/content/docs/import/csv.md b/src/content/docs/import/csv.md index 1148c456..cf04f021 100644 --- a/src/content/docs/import/csv.md +++ b/src/content/docs/import/csv.md @@ -1,5 +1,6 @@ --- title: Import data from CSV files +description: Bulk import data from CSV files into Kuzu using COPY FROM with extensive configuration options and error handling. --- You can bulk import data to node and relationship tables from CSV files diff --git a/src/content/docs/import/index.mdx b/src/content/docs/import/index.mdx index 7d7ee67f..f0d34356 100644 --- a/src/content/docs/import/index.mdx +++ b/src/content/docs/import/index.mdx @@ -1,5 +1,6 @@ --- title: Import data +description: Comprehensive guide to importing data into Kuzu using COPY FROM commands for CSV, Parquet, JSON, NumPy, and DataFrame sources. --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/import/merge.md b/src/content/docs/import/merge.md index a98c8dc4..dd6fc703 100644 --- a/src/content/docs/import/merge.md +++ b/src/content/docs/import/merge.md @@ -1,5 +1,6 @@ --- title: Merge +description: Insert small amounts of data into existing Kuzu tables using the MERGE clause with nodes and relationships. --- For small graphs (a few thousand nodes), the `MERGE` [Cypher clause](/cypher/data-manipulation-clauses) diff --git a/src/content/docs/import/npy.md b/src/content/docs/import/npy.md index 90d13ded..d239aae7 100644 --- a/src/content/docs/import/npy.md +++ b/src/content/docs/import/npy.md @@ -1,5 +1,6 @@ --- title: Import NumPy +description: Import numerical data from NumPy .npy files into Kuzu node tables for machine learning and data science applications. --- The `.npy` format is the standard binary file format in [NumPy](https://numpy.org/) for persisting a diff --git a/src/content/docs/import/parquet.md b/src/content/docs/import/parquet.md index eadf6640..83ed0175 100644 --- a/src/content/docs/import/parquet.md +++ b/src/content/docs/import/parquet.md @@ -1,5 +1,6 @@ --- title: Import Parquet +description: Bulk import data from Apache Parquet columnar files into Kuzu node and relationship tables using COPY FROM. --- [Apache Parquet](https://Parquet.apache.org/docs/) is an open source, column-oriented persistent storage format diff --git a/src/content/docs/installation.mdx b/src/content/docs/installation.mdx index bedf3a80..72829060 100644 --- a/src/content/docs/installation.mdx +++ b/src/content/docs/installation.mdx @@ -1,5 +1,6 @@ --- title: Install Kuzu +description: Installation guide for Kuzu graph database across different platforms and programming languages with package managers. ---
diff --git a/src/content/docs/migrate/index.md b/src/content/docs/migrate/index.md index 4f61cd2c..6bbec1d9 100644 --- a/src/content/docs/migrate/index.md +++ b/src/content/docs/migrate/index.md @@ -1,5 +1,6 @@ --- title: Migrate your database +description: "Export and import databases between different Kuzu versions using EXPORT/IMPORT DATABASE commands" --- You can migrate databases between different versions of Kuzu without manually writing DDL and COPY statements. diff --git a/src/content/docs/system-requirements.md b/src/content/docs/system-requirements.md index 13f4a784..053fd9ba 100644 --- a/src/content/docs/system-requirements.md +++ b/src/content/docs/system-requirements.md @@ -1,5 +1,6 @@ --- title: System requirements +description: Hardware and software requirements for running Kuzu graph database including memory, CPU, and OS specifications. --- ## CLI, C, and C++ diff --git a/src/content/docs/tutorials/cypher/index.mdx b/src/content/docs/tutorials/cypher/index.mdx index 9db66d09..b74b146e 100644 --- a/src/content/docs/tutorials/cypher/index.mdx +++ b/src/content/docs/tutorials/cypher/index.mdx @@ -1,5 +1,6 @@ --- title: Cypher Tutorial +description: Interactive Cypher query language tutorial covering graph patterns, clauses, and advanced query techniques. --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/tutorials/example-database.md b/src/content/docs/tutorials/example-database.md index 645c4e81..536a5777 100644 --- a/src/content/docs/tutorials/example-database.md +++ b/src/content/docs/tutorials/example-database.md @@ -1,5 +1,6 @@ --- title: Example database +description: Sample database schemas and datasets for learning and testing Kuzu features with real-world data examples. --- The dataset used in the tutorials is a social network dataset of users and posts that has the following schema. diff --git a/src/content/docs/tutorials/index.mdx b/src/content/docs/tutorials/index.mdx index eb852482..4e2ccc66 100644 --- a/src/content/docs/tutorials/index.mdx +++ b/src/content/docs/tutorials/index.mdx @@ -1,5 +1,6 @@ --- title: Tutorials +description: Learning resources for Kuzu's features, Cypher query language, and Python data science integration tutorials. --- In this section, we link to some learning resources to become more familiar with Kuzu's usability diff --git a/src/content/docs/tutorials/python/index.mdx b/src/content/docs/tutorials/python/index.mdx index fe5f8c8b..f99b334c 100644 --- a/src/content/docs/tutorials/python/index.mdx +++ b/src/content/docs/tutorials/python/index.mdx @@ -1,5 +1,6 @@ --- title: "Python Tutorial: Analyze a Social Network" +description: "Learn to use Kuzu's Python API to analyze social network data with hands-on examples" --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/tutorials/rust/index.mdx b/src/content/docs/tutorials/rust/index.mdx index 2c686bb0..e4a6c4ba 100644 --- a/src/content/docs/tutorials/rust/index.mdx +++ b/src/content/docs/tutorials/rust/index.mdx @@ -1,5 +1,6 @@ --- title: "Rust Tutorial: Analyze a Social Network" +description: "Learn to use Kuzu's Rust API to analyze social network data with hands-on examples" --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; diff --git a/src/content/docs/visualization/kuzu-explorer/import-panel.md b/src/content/docs/visualization/kuzu-explorer/import-panel.md index 39e28342..dbfe11be 100644 --- a/src/content/docs/visualization/kuzu-explorer/import-panel.md +++ b/src/content/docs/visualization/kuzu-explorer/import-panel.md @@ -1,5 +1,6 @@ --- title: Import Panel +description: Import data into Kuzu through the Explorer interface with CSV, Parquet, and JSON file upload capabilities. --- The Import Panel allows you to import data into your database from CSV or Parquet files via the UI. diff --git a/src/content/docs/visualization/kuzu-explorer/index.mdx b/src/content/docs/visualization/kuzu-explorer/index.mdx index 50bb544f..11739450 100644 --- a/src/content/docs/visualization/kuzu-explorer/index.mdx +++ b/src/content/docs/visualization/kuzu-explorer/index.mdx @@ -1,5 +1,6 @@ --- title: Visualize graphs in Kuzu Explorer +description: Browser-based frontend for visualizing and exploring Kuzu database schemas and query results as graphs, tables, or JSON. --- import { LinkCard, CardGrid } from '@astrojs/starlight/components'; diff --git a/src/content/docs/visualization/kuzu-explorer/query-panel.md b/src/content/docs/visualization/kuzu-explorer/query-panel.md index ad860e58..01f58ba2 100644 --- a/src/content/docs/visualization/kuzu-explorer/query-panel.md +++ b/src/content/docs/visualization/kuzu-explorer/query-panel.md @@ -1,5 +1,6 @@ --- title: Query Panel +description: Execute Cypher queries in Kuzu Explorer with syntax highlighting, autocomplete, and result visualization options. --- ## Query editor diff --git a/src/content/docs/visualization/kuzu-explorer/schema-panel.md b/src/content/docs/visualization/kuzu-explorer/schema-panel.md index 6f489126..4fb05b4b 100644 --- a/src/content/docs/visualization/kuzu-explorer/schema-panel.md +++ b/src/content/docs/visualization/kuzu-explorer/schema-panel.md @@ -1,5 +1,6 @@ --- title: Schema Panel +description: Explore database schema visually with node and relationship table information in Kuzu Explorer. --- If you click on the `Schema` tab in the top right corner of Kuzu Explorer, you get to the Schema Panel, diff --git a/src/content/docs/visualization/kuzu-explorer/settings-panel.md b/src/content/docs/visualization/kuzu-explorer/settings-panel.md index 287cded4..567f9734 100644 --- a/src/content/docs/visualization/kuzu-explorer/settings-panel.md +++ b/src/content/docs/visualization/kuzu-explorer/settings-panel.md @@ -1,5 +1,6 @@ --- title: Settings Panel +description: Configure Kuzu Explorer display options, graph layout settings, and visualization preferences. --- The Settings Panel, which you can access by clicking `Settings` in the top right corner, From 93d2f3f24f979edbf2fb47cc2f1c86c5bb80e9ee Mon Sep 17 00:00:00 2001 From: Prashanth Rao <35005448+prrao87@users.noreply.github.com> Date: Thu, 11 Sep 2025 08:42:14 -0400 Subject: [PATCH 2/3] Update src/content/docs/import/index.mdx --- src/content/docs/import/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/import/index.mdx b/src/content/docs/import/index.mdx index f0d34356..329ee8be 100644 --- a/src/content/docs/import/index.mdx +++ b/src/content/docs/import/index.mdx @@ -1,6 +1,6 @@ --- title: Import data -description: Comprehensive guide to importing data into Kuzu using COPY FROM commands for CSV, Parquet, JSON, NumPy, and DataFrame sources. +description: Guide to importing data into Kuzu using COPY FROM commands for CSV, Parquet, JSON, NumPy, and DataFrame sources. --- import { CardGrid, LinkCard } from '@astrojs/starlight/components'; From 6e6841314201d534a6c620fb638889d52de7cdd7 Mon Sep 17 00:00:00 2001 From: Prashanth Rao <35005448+prrao87@users.noreply.github.com> Date: Thu, 11 Sep 2025 08:42:21 -0400 Subject: [PATCH 3/3] Update src/content/docs/extensions/llm.mdx --- src/content/docs/extensions/llm.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/extensions/llm.mdx b/src/content/docs/extensions/llm.mdx index 311e5605..2d56210e 100644 --- a/src/content/docs/extensions/llm.mdx +++ b/src/content/docs/extensions/llm.mdx @@ -1,6 +1,6 @@ --- title: "LLM extension" -description: "Run LLM-based workflows and create embeddings directly within Kuzu using Cypher" +description: "Access popular LLM APIs to create embeddings directly within Kuzu using Cypher" --- import { Tabs, TabItem } from '@astrojs/starlight/components';