Skip to content

Commit 59977c3

Browse files
Cassandra Stumergitbook-bot
authored andcommitted
GITBOOK-37: Blog post to promo Pgconf (linked from feature banner)
1 parent 717de29 commit 59977c3

File tree

4 files changed

+46
-5
lines changed

4 files changed

+46
-5
lines changed

pgml-cms/blog/SUMMARY.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Table of contents
22

33
* [Home](README.md)
4+
* [Meet us at the 2024 Postgres Conference!](meet-us-at-the-2024-postgres-conference.md)
5+
* [The 1.0 SDK is Here](the-1.0-sdk-is-here.md)
6+
* [Using PostgresML with Django and embedding search](using-postgresml-with-django-and-embedding-search.md)
7+
* [PostgresML is going multicloud](postgresml-is-going-multicloud.md)
48
* [Introducing the OpenAI Switch Kit: Move from closed to open-source AI in minutes](introducing-the-openai-switch-kit-move-from-closed-to-open-source-ai-in-minutes.md)
59
* [Speeding up vector recall 5x with HNSW](speeding-up-vector-recall-5x-with-hnsw.md)
610
* [How-to Improve Search Results with Machine Learning](how-to-improve-search-results-with-machine-learning.md)
7-
* [The 1.0 SDK is Here](the-1.0-sdk-is-here.md)
8-
* [PostgresML is going multicloud](postgresml-is-going-multicloud.md)
9-
* [Using PostgresML with Django and embedding search](using-postgresml-with-django-and-embedding-search.md)
1011
* [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-part-i.md)
1112
* [Announcing Support for AWS us-east-1 Region](announcing-support-for-aws-us-east-1-region.md)
1213
* [LLM based pipelines with PostgresML and dbt (data build tool)](llm-based-pipelines-with-postgresml-and-dbt-data-build-tool.md)
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
description: Announcing our sponsorship of the Postgres Conference in San Jose April 17-19
3+
---
4+
5+
# Meet us at the 2024 Postgres Conference!
6+
7+
<div align="left">
8+
9+
<figure><img src=".gitbook/assets/image.png" alt="Author" width="100"><figcaption></figcaption></figure>
10+
11+
</div>
12+
13+
Cassandra Stumer
14+
15+
March 20, 2023
16+
17+
Hey database aficionados, mark your calendars because something big is coming your way! We're thrilled to announce that we will be sponsoring the[ 2024 Postgres Conference](https://postgresconf.org/conferences/2024) – the marquee PostgreSQL conference event for North America.&#x20;
18+
19+
Why should you care? It's not every day you get to dive headfirst into the world of Postgres with folks who eat, sleep, and breathe data. We're talking hands-on workshops, lightning talks, and networking galore. Whether you're itching to sharpen your SQL skills or keen to explore the frontier of machine learning in the database, we've got you covered.
20+
21+
{% hint style="info" %}
22+
Save 25% on your ticket with our discount code: 2024\_POSTGRESML\_25
23+
{% endhint %}
24+
25+
\
26+
PostgresML CEO and founder, Montana Low, will kick off the event on April 17th with a keynote about navigating the confluence of hardware evolution and machine learning technology.&#x20;
27+
28+
We’ll also be hosting a masterclass in retrieval augmented generation (RAG) on April 18th. Our own Silas Marvin will give hands-on guidance to equip you with the ability to implement RAG directly within your database.&#x20;
29+
30+
But wait, there's more! Our senior team will be at our booth at all hours to get to know you, talk shop, and answer any questions you may have. Whether it's about PostgresML, machine learning, or all the sweet merch we’ll have on deck.&#x20;
31+
32+
{% hint style="info" %}
33+
If you’d like some 1:1 time with our team at PgConf [contact us here](https://postgresml.org/contact). We’d be happy to prep something special for you.&#x20;
34+
{% endhint %}
35+
36+
So, why sit on the sidelines when you could be right in the thick of it, soaking up knowledge, making connections, and maybe even stumbling upon your next big breakthrough? Clear your schedule, grab your ticket, and get ready to geek out with us in San Jose.
37+
38+
See you there!
39+
40+
\

pgml-cms/blog/the-1.0-sdk-is-here.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
featured: true
2+
featured: false
33
tags:
44
- product
55
description: >-

pgml-cms/blog/using-postgresml-with-django-and-embedding-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ PostgresML allows anyone to integrate advanced AI capabilities into their applic
2828

2929
Advanced search engines like Google use this technique to extract the meaning of search queries and rank the results based on what the user actually _wants_, unlike simple keyword matches which can easily give irrelevant results.
3030

31-
To accomplish this, for each document in our app, we include an embedding column stored as a vector. A vector is just an array of floating point numbers. For each item in our to-do list, we automatically generate the embedding using the PostgresML [`pgml.embed()`](https://postgresml.org/docs/api/sql-extension/pgml.embed) function. This function runs inside the database and doesn't require the Django app to install the model locally.
31+
To accomplish this, for each document in our app, we include an embedding column stored as a vector. A vector is just an array of floating point numbers. For each item in our to-do list, we automatically generate the embedding using the PostgresML [`pgml.embed()`](https://postgresml.org/docs/introduction/apis/sql-extensions/pgml.embed) function. This function runs inside the database and doesn't require the Django app to install the model locally.
3232

3333
An embedding model running inside PostgresML is able to extract the meaning of search queries & compare it to the meaning of the documents it stores, just like a human being would if they were able to search millions of documents in just a few milliseconds.
3434

0 commit comments

Comments
 (0)