Skip to content

Commit 6b54aed

Browse files
Moloejoegitbook-bot
authored andcommitted
GITBOOK-3: Blog page descriptions
1 parent 3612703 commit 6b54aed

24 files changed

+143
-45
lines changed

pgml-docs/blog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Our blog posts
66

77
* [speeding-up-vector-recall-5x-with-hnsw.md](speeding-up-vector-recall-5x-with-hnsw.md "mention")
88
* [how-to-improve-search-results-with-machine-learning.md](how-to-improve-search-results-with-machine-learning.md "mention")
9-
* [pgml-chat-a-command-line-tool-for-deploying-low-latency-knowledge-based-chatbots-part-i.md](pgml-chat-a-command-line-tool-for-deploying-low-latency-knowledge-based-chatbots-part-i.md "mention")
9+
* [pgml-chat-a-command-line-tool-for-deploying-low-latency-knowledge-based-chatbots.md](pgml-chat-a-command-line-tool-for-deploying-low-latency-knowledge-based-chatbots.md "mention")
1010
* [announcing-support-for-aws-us-east-1-region.md](announcing-support-for-aws-us-east-1-region.md "mention")
1111
* [how-we-generate-javascript-and-python-sdks-from-our-canonical-rust-sdk.md](how-we-generate-javascript-and-python-sdks-from-our-canonical-rust-sdk.md "mention")
1212
* [announcing-gptq-and-ggml-quantized-llm-support-for-huggingface-transformers.md](announcing-gptq-and-ggml-quantized-llm-support-for-huggingface-transformers.md "mention")

pgml-docs/blog/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* [Home](README.md)
44
* [Speeding up vector recall 5x with HNSW](speeding-up-vector-recall-5x-with-hnsw.md)
55
* [How-to Improve Search Results with Machine Learning](how-to-improve-search-results-with-machine-learning.md)
6-
* [pgml-chat: A command-line tool for deploying low-latency knowledge-based chatbots: Part I](pgml-chat-a-command-line-tool-for-deploying-low-latency-knowledge-based-chatbots-part-i.md)
6+
* [pgml-chat: A command-line tool for deploying low-latency knowledge-based chatbots](pgml-chat-a-command-line-tool-for-deploying-low-latency-knowledge-based-chatbots.md)
77
* [Announcing Support for AWS us-east-1 Region](announcing-support-for-aws-us-east-1-region.md)
88
* [LLM based pipelines with PostgresML and dbt (data build tool)](llm-based-pipelines-with-postgresml-and-dbt-data-build-tool.md)
99
* [How We Generate JavaScript and Python SDKs From Our Canonical Rust SDK](how-we-generate-javascript-and-python-sdks-from-our-canonical-rust-sdk.md)

pgml-docs/blog/announcing-gptq-and-ggml-quantized-llm-support-for-huggingface-transformers.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
# Announcing GPTQ & GGML Quantized LLM support for Huggingface Transformers
2-
1+
---
2+
description: >-
3+
GPTQ & GGML allow PostgresML to fit larger models in less RAM. These
4+
algorithms perform inference significantly faster on NVIDIA, Apple and Intel
5+
hardware.
6+
---
37

8+
# Announcing GPTQ & GGML Quantized LLM support for Huggingface Transformers
49

510
Montana Low
611

pgml-docs/blog/backwards-compatible-or-bust-python-inside-rust-inside-postgres.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
# Backwards Compatible or Bust: Python Inside Rust Inside Postgres
2-
1+
---
2+
description: >-
3+
A story about including Scikit-learn into our Rust extension and preserving
4+
backwards compatibility in the process.
5+
---
36

7+
# Backwards Compatible or Bust: Python Inside Rust Inside Postgres
48

59
Lev Kokotov
610

pgml-docs/blog/data-is-living-and-relational.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
# Data is Living and Relational
2-
1+
---
2+
description: >-
3+
A common problem with data science and machine learning tutorials is the
4+
published and studied datasets are often nothing like what you’ll find in
5+
industry.
6+
---
37

8+
# Data is Living and Relational
49

510
Montana Low
611

pgml-docs/blog/generating-llm-embeddings-with-open-source-models-in-postgresml.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
# Generating LLM embeddings with open source models in PostgresML
2-
1+
---
2+
description: >-
3+
How to use the pgml.embed(...) function to generate embeddings with free and
4+
open source models in your own database.
5+
---
36

7+
# Generating LLM embeddings with open source models in PostgresML
48

59
Montana Low
610

pgml-docs/blog/how-to-improve-search-results-with-machine-learning.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
# How-to Improve Search Results with Machine Learning
2-
1+
---
2+
description: >-
3+
PostgresML makes it easy to use machine learning on your data and scale
4+
workloads horizontally in our cloud. One of the most common use cases is to
5+
improve search results.
6+
---
37

8+
# How-to Improve Search Results with Machine Learning
49

510
Montana Low
611

pgml-docs/blog/how-we-generate-javascript-and-python-sdks-from-our-canonical-rust-sdk.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
# How We Generate JavaScript and Python SDKs From Our Canonical Rust SDK
2-
1+
---
2+
description: >-
3+
Our story of simultaneously writing multi-language native libraries using
4+
Rust.
5+
---
36

7+
# How We Generate JavaScript and Python SDKs From Our Canonical Rust SDK
48

59
Silas Marvin
610

pgml-docs/blog/introducing-postgresml-python-sdk-build-end-to-end-vector-search-applications-without-openai-and-pin.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
# Introducing PostgresML Python SDK: Build End-to-End Vector Search Applications without OpenAI and Pinecone
2-
1+
---
2+
description: >-
3+
The PostgresML Python SDK is designed to facilitate the development of
4+
end-to-end vector search applications without OpenAI and Pinecone.
5+
---
36

7+
# Introducing PostgresML Python SDK: Build End-to-End Vector Search Applications without OpenAI and Pinecone
48

59
Santi Adavani
610

pgml-docs/blog/llm-based-pipelines-with-postgresml-and-dbt-data-build-tool.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
# LLM based pipelines with PostgresML and dbt (data build tool)
2-
1+
---
2+
description: >-
3+
Unlock the Power of Large Language Models (LLM) in Data Pipelines with
4+
PostgresML and dbt.
5+
---
36

7+
# LLM based pipelines with PostgresML and dbt (data build tool)
48

59
Santi Adavani
610

0 commit comments

Comments
 (0)