🌐 AI搜索 & 代理 主页
Skip to content

Commit c557ce0

Browse files
committed
Remove warning
1 parent 162e27f commit c557ce0

File tree

2 files changed

+154
-46
lines changed

2 files changed

+154
-46
lines changed

pgml-cms/docs/SUMMARY.md

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -59,58 +59,12 @@
5959
* [Aggregation](guides/embeddings/vector-aggregation.md)
6060
* [Similarity](guides/embeddings/vector-similarity.md)
6161
* [Normalization](guides/embeddings/vector-normalization.md)
62-
<!-- * [Indexing w/ pgvector](guides/embeddings/indexing-w-pgvector.md) -->
63-
<!-- * [Re-ranking nearest neighbors](guides/embeddings/re-ranking-nearest-neighbors.md) -->
64-
<!-- * [Proprietary Models](guides/embeddings/proprietary-models.md) -->
6562
* [Search](guides/improve-search-results-with-machine-learning.md)
6663
* [Chatbots](guides/chatbots/README.md)
6764
* [Example Application](use-cases/chatbots.md)
6865
* [Supervised Learning](guides/supervised-learning.md)
6966
* [OpenSourceAI](guides/opensourceai.md)
7067
* [Natural Language Processing](guides/natural-language-processing.md)
71-
72-
<!--
73-
* [Search]()
74-
* [Keyword Search]()
75-
* [Vector Search]()
76-
* [Hybrid Search]()
77-
* [Ranking]()
78-
* [Transformers & LLMs]()
79-
* [Text Generation]()
80-
* [Prompt Engineering]()
81-
* [Unified RAG]()
82-
* [Personalization]()
83-
* [Recommendations]()
84-
* [Forecasting]()
85-
* [Time series]()
86-
* [Events]()
87-
* [Fraud Detection]()
88-
* [Incentive Optimization]()
89-
* [Machine Learning]()
90-
* [Feature Engineering]()
91-
* [Regression]()
92-
* [Classification]()
93-
* [Clustering]()
94-
* [Matrix Decomposition]()
95-
* [Natural Language Processing]()
96-
* [Tokenization]()
97-
* [Chunking]()
98-
* [Text Generation]()
99-
* [Sentiment Analysis]()
100-
* [Summarization]()
101-
102-
## Reference
103-
104-
* [SQL]()
105-
* [Explain plans]()
106-
* [Composition]()
107-
* [LLMs]()
108-
* [LLama]()
109-
* [GPT]()
110-
* [Facon]()
111-
* [Glossary]()
112-
113-
-->
11468

11569
## Product
11670

pgml-cms/docs/summary_draft.md

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
# Table of contents
2+
3+
## Introduction
4+
5+
* [Overview](README.md)
6+
* [Getting started](introduction/getting-started/README.md)
7+
* [Create your database](introduction/getting-started/create-your-database.md)
8+
* [Connect your app](introduction/getting-started/connect-your-app.md)
9+
* [Import your data](introduction/getting-started/import-your-data/README.md)
10+
* [Logical replication](introduction/getting-started/import-your-data/logical-replication/README.md)
11+
* [Foreign Data Wrappers](introduction/getting-started/import-your-data/foreign-data-wrappers.md)
12+
* [Move data with COPY](introduction/getting-started/import-your-data/copy.md)
13+
* [Migrate with pg_dump](introduction/getting-started/import-your-data/pg-dump.md)
14+
15+
## API
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)
53+
54+
## Guides
55+
56+
* [Embeddings](guides/embeddings/README.md)
57+
* [In-database Generation](guides/embeddings/in-database-generation.md)
58+
* [Dimensionality Reduction](guides/embeddings/dimensionality-reduction.md)
59+
* [Aggregation](guides/embeddings/vector-aggregation.md)
60+
* [Similarity](guides/embeddings/vector-similarity.md)
61+
* [Normalization](guides/embeddings/vector-normalization.md)
62+
<!-- * [Indexing w/ pgvector](guides/embeddings/indexing-w-pgvector.md) -->
63+
<!-- * [Re-ranking nearest neighbors](guides/embeddings/re-ranking-nearest-neighbors.md) -->
64+
<!-- * [Proprietary Models](guides/embeddings/proprietary-models.md) -->
65+
* [Search](guides/improve-search-results-with-machine-learning.md)
66+
* [Chatbots](guides/chatbots/README.md)
67+
* [Example Application](use-cases/chatbots.md)
68+
* [Supervised Learning](guides/supervised-learning.md)
69+
* [OpenSourceAI](guides/opensourceai.md)
70+
* [Natural Language Processing](guides/natural-language-processing.md)
71+
72+
<!--
73+
* [Search]()
74+
* [Keyword Search]()
75+
* [Vector Search]()
76+
* [Hybrid Search]()
77+
* [Ranking]()
78+
* [Transformers & LLMs]()
79+
* [Text Generation]()
80+
* [Prompt Engineering]()
81+
* [Unified RAG]()
82+
* [Personalization]()
83+
* [Recommendations]()
84+
* [Forecasting]()
85+
* [Time series]()
86+
* [Events]()
87+
* [Fraud Detection]()
88+
* [Incentive Optimization]()
89+
* [Machine Learning]()
90+
* [Feature Engineering]()
91+
* [Regression]()
92+
* [Classification]()
93+
* [Clustering]()
94+
* [Matrix Decomposition]()
95+
* [Natural Language Processing]()
96+
* [Tokenization]()
97+
* [Chunking]()
98+
* [Text Generation]()
99+
* [Sentiment Analysis]()
100+
* [Summarization]()
101+
102+
## Reference
103+
104+
* [SQL]()
105+
* [Explain plans]()
106+
* [Composition]()
107+
* [LLMs]()
108+
* [LLama]()
109+
* [GPT]()
110+
* [Facon]()
111+
* [Glossary]()
112+
113+
-->
114+
115+
## Product
116+
117+
* [Cloud database](product/cloud-database/README.md)
118+
* [Serverless](product/cloud-database/serverless.md)
119+
* [Dedicated](product/cloud-database/dedicated.md)
120+
* [Enterprise](product/cloud-database/plans.md)
121+
* [Vector database](product/vector-database.md)
122+
* [PgCat pooler](product/pgcat/README.md)
123+
* [Features](product/pgcat/features.md)
124+
* [Installation](product/pgcat/installation.md)
125+
* [Configuration](product/pgcat/configuration.md)
126+
127+
128+
## Resources
129+
130+
* [Architecture](resources/architecture/README.md)
131+
* [Why PostgresML?](resources/architecture/why-postgresml.md)
132+
* [FAQs](resources/faqs.md)
133+
* [Data Storage & Retrieval](resources/data-storage-and-retrieval/README.md)
134+
* [Documents](resources/data-storage-and-retrieval/documents.md)
135+
* [Partitioning](resources/data-storage-and-retrieval/partitioning.md)
136+
* [LLM based pipelines with PostgresML and dbt (data build tool)](resources/data-storage-and-retrieval/llm-based-pipelines-with-postgresml-and-dbt-data-build-tool.md)
137+
* [Benchmarks](resources/benchmarks/postgresml-is-8-40x-faster-than-python-http-microservices.md)
138+
* [PostgresML is 8-40x faster than Python HTTP microservices](resources/benchmarks/postgresml-is-8-40x-faster-than-python-http-microservices.md)
139+
* [Scaling to 1 Million Requests per Second](resources/benchmarks/million-requests-per-second.md)
140+
* [MindsDB vs PostgresML](resources/benchmarks/mindsdb-vs-postgresml.md)
141+
* [GGML Quantized LLM support for Huggingface Transformers](resources/benchmarks/ggml-quantized-llm-support-for-huggingface-transformers.md)
142+
* [Making Postgres 30 Percent Faster in Production](resources/benchmarks/making-postgres-30-percent-faster-in-production.md)
143+
* [Developer Docs](resources/developer-docs/README.md)
144+
* [Local Docker Development](resources/developer-docs/quick-start-with-docker.md)
145+
* [Installation](resources/developer-docs/installation.md)
146+
* [Contributing](resources/developer-docs/contributing.md)
147+
* [Distributed Training](resources/developer-docs/distributed-training.md)
148+
* [GPU Support](resources/developer-docs/gpu-support.md)
149+
* [Self-hosting](resources/developer-docs/self-hosting/README.md)
150+
* [Pooler](resources/developer-docs/self-hosting/pooler.md)
151+
* [Building from source](resources/developer-docs/self-hosting/building-from-source.md)
152+
* [Replication](resources/developer-docs/self-hosting/replication.md)
153+
* [Backups](resources/developer-docs/self-hosting/backups.md)
154+
* [Running on EC2](resources/developer-docs/self-hosting/running-on-ec2.md)

0 commit comments

Comments
 (0)