|
12 | 12 | * [Move data with COPY](introduction/getting-started/import-your-data/copy.md)
|
13 | 13 | * [Migrate with pg_dump](introduction/getting-started/import-your-data/pg-dump.md)
|
14 | 14 |
|
15 |
| -## API |
| 15 | +## Open Source |
16 | 16 |
|
17 |
| -* [Overview](api/overview.md) |
18 |
| -* [SQL extension](api/sql-extension/README.md) |
19 |
| - * [pgml.embed()](api/sql-extension/pgml.embed.md) |
20 |
| - * [pgml.transform()](api/sql-extension/pgml.transform/README.md) |
21 |
| - * [Fill-Mask](api/sql-extension/pgml.transform/fill-mask.md) |
22 |
| - * [Question answering](api/sql-extension/pgml.transform/question-answering.md) |
23 |
| - * [Summarization](api/sql-extension/pgml.transform/summarization.md) |
24 |
| - * [Text classification](api/sql-extension/pgml.transform/text-classification.md) |
25 |
| - * [Text Generation](api/sql-extension/pgml.transform/text-generation.md) |
26 |
| - * [Text-to-Text Generation](api/sql-extension/pgml.transform/text-to-text-generation.md) |
27 |
| - * [Token Classification](api/sql-extension/pgml.transform/token-classification.md) |
28 |
| - * [Translation](api/sql-extension/pgml.transform/translation.md) |
29 |
| - * [Zero-shot Classification](api/sql-extension/pgml.transform/zero-shot-classification.md) |
30 |
| - * [pgml.deploy()](api/sql-extension/pgml.deploy.md) |
31 |
| - * [pgml.decompose()](api/sql-extension/pgml.decompose.md) |
32 |
| - * [pgml.chunk()](api/sql-extension/pgml.chunk.md) |
33 |
| - * [pgml.generate()](api/sql-extension/pgml.generate.md) |
34 |
| - * [pgml.predict()](api/sql-extension/pgml.predict/README.md) |
35 |
| - * [Batch Predictions](api/sql-extension/pgml.predict/batch-predictions.md) |
36 |
| - * [pgml.train()](api/sql-extension/pgml.train/README.md) |
37 |
| - * [Regression](api/sql-extension/pgml.train/regression.md) |
38 |
| - * [Classification](api/sql-extension/pgml.train/classification.md) |
39 |
| - * [Clustering](api/sql-extension/pgml.train/clustering.md) |
40 |
| - * [Decomposition](api/sql-extension/pgml.train/decomposition.md) |
41 |
| - * [Data Pre-processing](api/sql-extension/pgml.train/data-pre-processing.md) |
42 |
| - * [Hyperparameter Search](api/sql-extension/pgml.train/hyperparameter-search.md) |
43 |
| - * [Joint Optimization](api/sql-extension/pgml.train/joint-optimization.md) |
44 |
| - * [pgml.tune()](api/sql-extension/pgml.tune.md) |
45 |
| -* [Client SDK](api/client-sdk/README.md) |
46 |
| - * [Collections](api/client-sdk/collections.md) |
47 |
| - * [Pipelines](api/client-sdk/pipelines.md) |
48 |
| - * [Vector Search](api/client-sdk/search.md) |
49 |
| - * [Document Search](api/client-sdk/document-search.md) |
50 |
| - * [Tutorials](api/client-sdk/tutorials/README.md) |
51 |
| - * [Semantic Search](api/client-sdk/tutorials/semantic-search.md) |
52 |
| - * [Semantic Search Using Instructor Model](api/client-sdk/tutorials/semantic-search-1.md) |
| 17 | +* [Overview](open-source/overview.md) |
| 18 | +* [PGML](open-source/pgml/README.md) |
| 19 | + * [API](open-source/pgml/api/README.md) |
| 20 | + * [pgml.embed()](open-source/pgml/api/pgml.embed.md) |
| 21 | + * [pgml.transform()](open-source/pgml/api/pgml.transform/README.md) |
| 22 | + * [Fill-Mask](open-source/pgml/api/pgml.transform/fill-mask.md) |
| 23 | + * [Question answering](open-source/pgml/api/pgml.transform/question-answering.md) |
| 24 | + * [Summarization](open-source/pgml/api/pgml.transform/summarization.md) |
| 25 | + * [Text classification](open-source/pgml/api/pgml.transform/text-classification.md) |
| 26 | + * [Text Generation](open-source/pgml/api/pgml.transform/text-generation.md) |
| 27 | + * [Text-to-Text Generation](open-source/pgml/api/pgml.transform/text-to-text-generation.md) |
| 28 | + * [Token Classification](open-source/pgml/api/pgml.transform/token-classification.md) |
| 29 | + * [Translation](open-source/pgml/api/pgml.transform/translation.md) |
| 30 | + * [Zero-shot Classification](open-source/pgml/api/pgml.transform/zero-shot-classification.md) |
| 31 | + * [pgml.transform_stream()](open-source/pgml/api/pgml.transform_stream.md) |
| 32 | + * [pgml.deploy()](open-source/pgml/api/pgml.deploy.md) |
| 33 | + * [pgml.decompose()](open-source/pgml/api/pgml.decompose.md) |
| 34 | + * [pgml.chunk()](open-source/pgml/api/pgml.chunk.md) |
| 35 | + * [pgml.generate()](open-source/pgml/api/pgml.generate.md) |
| 36 | + * [pgml.predict()](open-source/pgml/api/pgml.predict/README.md) |
| 37 | + * [Batch Predictions](open-source/pgml/api/pgml.predict/batch-predictions.md) |
| 38 | + * [pgml.train()](open-source/pgml/api/pgml.train/README.md) |
| 39 | + * [Regression](open-source/pgml/api/pgml.train/regression.md) |
| 40 | + * [Classification](open-source/pgml/api/pgml.train/classification.md) |
| 41 | + * [Clustering](open-source/pgml/api/pgml.train/clustering.md) |
| 42 | + * [Decomposition](open-source/pgml/api/pgml.train/decomposition.md) |
| 43 | + * [Data Pre-processing](open-source/pgml/api/pgml.train/data-pre-processing.md) |
| 44 | + * [Hyperparameter Search](open-source/pgml/api/pgml.train/hyperparameter-search.md) |
| 45 | + * [Joint Optimization](open-source/pgml/api/pgml.train/joint-optimization.md) |
| 46 | + * [pgml.tune()](open-source/pgml/api/pgml.tune.md) |
| 47 | +* [Korvus](open-source/korvus/README.md) |
| 48 | + * [API](open-source/korvus/api/README.md) |
| 49 | + * [Collections](open-source/korvus/api/collections.md) |
| 50 | + * [Pipelines](open-source/korvus/api/pipelines.md) |
| 51 | + * [Guides](open-source/korvus/guides/README.md) |
| 52 | + * [Constructing Pipelines](open-source/korvus/guides/constructing-pipelines.md) |
| 53 | + * [RAG](open-source/korvus/guides/rag.md) |
| 54 | + * [Vector Search](open-source/korvus/guides/vector-search.md) |
| 55 | + * [Document Search](open-source/korvus/guides/document-search.md) |
| 56 | + * [Example Apps](open-source/korvus/example-apps/README.md) |
| 57 | + * [Semantic Search](open-source/korvus/example-apps/semantic-search.md) |
| 58 | +* [PgCat](open-source/pgcat/README.md) |
| 59 | + * [Features](open-source/pgcat/features.md) |
| 60 | + * [Installation](open-source/pgcat/installation.md) |
| 61 | + * [Configuration](open-source/pgcat/configuration.md) |
53 | 62 |
|
54 | 63 | ## Guides
|
55 | 64 |
|
|
66 | 75 | * [Unified RAG](guides/unified-rag.md)
|
67 | 76 | * [OpenSourceAI](guides/opensourceai.md)
|
68 | 77 | * [Natural Language Processing](guides/natural-language-processing.md)
|
69 |
| - |
70 |
| -## Product |
| 78 | +* [Vector database](guides/vector-database.md) |
71 | 79 |
|
72 |
| -* [Cloud database](product/cloud-database/README.md) |
73 |
| - * [Serverless](product/cloud-database/serverless.md) |
74 |
| - * [Dedicated](product/cloud-database/dedicated.md) |
75 |
| - * [Enterprise](product/cloud-database/plans.md) |
76 |
| -* [Vector database](product/vector-database.md) |
77 |
| -* [PgCat pooler](product/pgcat/README.md) |
78 |
| - * [Features](product/pgcat/features.md) |
79 |
| - * [Installation](product/pgcat/installation.md) |
80 |
| - * [Configuration](product/pgcat/configuration.md) |
| 80 | +## Cloud |
81 | 81 |
|
| 82 | +* [Overview](cloud/overview.md) |
| 83 | +* [Serverless](cloud/serverless.md) |
| 84 | +* [Dedicated](cloud/dedicated.md) |
| 85 | +* [Enterprise](cloud/enterprise/README.md) |
| 86 | + * [Teams](cloud/enterprise/teams.md) |
| 87 | + * [VPC](cloud/enterprise/vpc.md) |
82 | 88 |
|
83 | 89 | ## Resources
|
84 | 90 |
|
|
0 commit comments