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
4 changes: 2 additions & 2 deletions docs/docs/contributing/new_built_in_target.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ This is not a consideration for target types that different targets are independ

The following target implementations provide good examples:

- [Postgres](/docs/ops/targets#postgres), see [related code](https://github.com/search?q=repo%3Acocoindex-io%2Fcocoindex+path%3A%2Ftarget%2F+Postgres&type=code).
- [Postgres](/docs/targets/postgres), see [related code](https://github.com/search?q=repo%3Acocoindex-io%2Fcocoindex+path%3A%2Ftarget%2F+Postgres&type=code).
It provides a good example for targets with specific column types in the schema.

- [Qdrant](/docs/ops/targets#qdrant), see [related code](https://github.com/search?q=repo%3Acocoindex-io%2Fcocoindex+path%3A%2Ftarget%2F+Qdrant&type=code).
- [Qdrant](/docs/targets/qdrant), see [related code](https://github.com/search?q=repo%3Acocoindex-io%2Fcocoindex+path%3A%2Ftarget%2F+Qdrant&type=code).
It provides a good example for targets without specific column types in the schema, as Qdrant's payloads are JSON objects.
2 changes: 1 addition & 1 deletion docs/docs/examples/examples/academic_papers_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ metadata_embeddings.export(

In this example we use PGVector as embedding store. With CocoIndex, you can do one line switch on other supported Vector databases.

<DocumentationButton url="https://cocoindex.io/docs/ops/targets#entry-oriented-targets" text="Entry Oriented Targets" margin="0 0 16px 0" />
<DocumentationButton url="https://cocoindex.io/docs/targets" text="Targets" margin="0 0 16px 0" />

## Query the index

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/examples/examples/docs_to_knowledge_graph.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ and then build a knowledge graph.


## Documentation
<DocumentationButton url="https://cocoindex.io/docs/ops/targets#property-graph-targets" text="Property Graph Targets" margin="0 0 16px 0" />
<DocumentationButton url="https://cocoindex.io/docs/targets#property-graph-targets" text="Property Graph Targets" margin="0 0 16px 0" />


## Data flow to build knowledge graph
Expand Down Expand Up @@ -371,7 +371,7 @@ MATCH p=()-->() RETURN p
## Kuzu
Cocoindex natively supports Kuzu - a high performant, embedded open source graph database.

<DocumentationButton url="https://cocoindex.io/docs/ops/targets#kuzu" text="Kuzu" margin="0 0 16px 0" />
<DocumentationButton url="https://cocoindex.io/docs/targets/kuzu" text="Kuzu" margin="0 0 16px 0" />

The GraphDB interface in CocoIndex is standardized, you just need to **switch the configuration** without any additional code changes. CocoIndex supports exporting to Kuzu through its API server. You can bring up a Kuzu API server locally by running:

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/examples/examples/simple_vector_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ doc_embeddings.export(
metric=cocoindex.VectorSimilarityMetric.COSINE_SIMILARITY)])
```
CocoIndex supports other vector databases as well, with 1-line switch.
<DocumentationButton url="https://cocoindex.io/docs/ops/targets" text="Targets" />
<DocumentationButton url="https://cocoindex.io/docs/targets" text="Targets" />

Need IVFFlat or custom HNSW parameters? Pass a method, for example:

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/getting_started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ doc_embeddings.export(

CocoIndex supports other vector databases as well, with 1-line switch.

<DocumentationButton url="https://cocoindex.io/docs/ops/targets" text="Targets" />
<DocumentationButton url="https://cocoindex.io/docs/targets" text="Targets" />


## Run the indexing pipeline
Expand Down
Loading