Skip to content

Commit ac786d7

Browse files
authored
fix anchors from doc/targets (#1116)
* organize targets * fix links * update routes * update links * example links * link * Update index.md * Update index.md * Update index.md * Update index.md * fix doc anchors * more fix
1 parent 81ec671 commit ac786d7

File tree

9 files changed

+12
-574
lines changed

9 files changed

+12
-574
lines changed

docs/docs/contributing/new_built_in_target.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ This is not a consideration for target types that different targets are independ
129129

130130
The following target implementations provide good examples:
131131

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

135-
- [Qdrant](/docs/ops/targets#qdrant), see [related code](https://github.com/search?q=repo%3Acocoindex-io%2Fcocoindex+path%3A%2Ftarget%2F+Qdrant&type=code).
135+
- [Qdrant](/docs/targets/qdrant), see [related code](https://github.com/search?q=repo%3Acocoindex-io%2Fcocoindex+path%3A%2Ftarget%2F+Qdrant&type=code).
136136
It provides a good example for targets without specific column types in the schema, as Qdrant's payloads are JSON objects.

docs/docs/examples/examples/academic_papers_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ metadata_embeddings.export(
324324

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

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

329329
## Query the index
330330

docs/docs/examples/examples/docs_to_knowledge_graph.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ and then build a knowledge graph.
4444

4545

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

4949

5050
## Data flow to build knowledge graph
@@ -371,7 +371,7 @@ MATCH p=()-->() RETURN p
371371
## Kuzu
372372
Cocoindex natively supports Kuzu - a high performant, embedded open source graph database.
373373
374-
<DocumentationButton url="https://cocoindex.io/docs/ops/targets#kuzu" text="Kuzu" margin="0 0 16px 0" />
374+
<DocumentationButton url="https://cocoindex.io/docs/targets/kuzu" text="Kuzu" margin="0 0 16px 0" />
375375
376376
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:
377377

docs/docs/examples/examples/simple_vector_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ doc_embeddings.export(
103103
metric=cocoindex.VectorSimilarityMetric.COSINE_SIMILARITY)])
104104
```
105105
CocoIndex supports other vector databases as well, with 1-line switch.
106-
<DocumentationButton url="https://cocoindex.io/docs/ops/targets" text="Targets" />
106+
<DocumentationButton url="https://cocoindex.io/docs/targets" text="Targets" />
107107

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

docs/docs/getting_started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ doc_embeddings.export(
138138

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

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

143143

144144
## Run the indexing pipeline

0 commit comments

Comments
 (0)