Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2ac22c1

Browse filesBrowse files
authored
Silas/llama 3.2 blog post (#1625)
1 parent 38ddc01 commit 2ac22c1
Copy full SHA for 2ac22c1

File tree

2 files changed

+57
-0
lines changed
Filter options

2 files changed

+57
-0
lines changed

‎pgml-cms/blog/SUMMARY.md

Copy file name to clipboardExpand all lines: pgml-cms/blog/SUMMARY.md
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Table of contents
22

33
* [Home](README.md)
4+
* [Meta’s Llama 3.2 Now Available in PostgresML Serverless](meta-llama-3.2-now-available-in-postgresml-serverless.md)
45
* [Announcing postgresml-django](announcing-postgresml-django.md)
56
* [Sudowrite + PostgresML](sudowrite-postgresml.md)
67
* [Korvus x Firecrawl: Rag in a single query](korvus-firecrawl-rag-in-a-single-query.md)
+56Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
description: Bringing smaller, smarter models to your data.
3+
featured: true
4+
tags: [product]
5+
image: ".gitbook/assets/Blog-Image_Llama-3.2.jpg"
6+
---
7+
8+
# Llama 3.2 now available in PostgresML serverless
9+
10+
<div align="left">
11+
12+
<figure><img src=".gitbook/assets/image.png" alt="Author" width="100"><figcaption></figcaption></figure>
13+
14+
</div>
15+
16+
Cassandra Stummer
17+
18+
September 27, 2024
19+
20+
Today, we're excited to announce that PostgresML now supports Llama 3.2, a development that not only enhances our capabilities, but also aligns with our core philosophy: bring the models to your data, not the other way around.
21+
22+
## The power of smaller models
23+
24+
The AI market is finally moving away from the "bigger is better" mentality. Size no longer equals capability. While companies like OpenAI pushed the research frontier with massive models, we're now seeing open-source models 225 times smaller achieving capabilities comparable to GPT-4 at launch. This shift challenges the notion that enormous, closed source models are the only path to advanced AI.
25+
26+
## Why Llama 3.2 in PostgresML?
27+
28+
Companies aiming to run their own models face a critical challenge. Data sources for interactive AI are hard to scale. The amount of context models need is growing: text, vectors, images, user history; find the needles in multiple haystacks, on demand. Gathering and sorting through context from growing data sources becomes the bottleneck in the system.
29+
30+
As models become smaller and datasets grow larger, the traditional approach of moving data to models becomes increasingly inefficient. That’s why we've always believed that the future of AI lies in bringing models directly to your data. The integration of smaller models like Llama 3.2 into PostgresML is a testament to our vision of the future of AI: Big data and small models colocating to deliver the most efficient, scalable AI infrastructure.
31+
32+
## What this means for you
33+
34+
The Instruct variants, LLama 3.2 1B and 3B, are now standard models included with all Serverless Databases at **no additional cost**. You can try them now.
35+
36+
## Getting Started
37+
38+
Integrating Llama 3.2 with PostgresML is straightforward. Here's a quick example:
39+
40+
```postgresql
41+
SELECT pgml.transform(
42+
task => '{
43+
"task": "text-generation",
44+
"model": "meta-llama/Llama-3.2-3B-Instruct"
45+
}'::JSONB,
46+
inputs => Array['AI is going to']
47+
);
48+
```
49+
50+
## The road ahead
51+
52+
This is just the beginning. We're committed to continually supporting the latest and greatest models, always with the goal of making AI more efficient, and aligned with your data strategy.
53+
54+
Ready to experience the power of Llama 3.2 in PostgresML? Get started today or contact our team for a personalized demo.
55+
56+
Stay tuned for more updates as we continue to push the boundaries of what's possible with AI in databases\!

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.