Skip to content

Commit 7348741

Browse files
authored
Update s3 vector (#225)
* Update s3 vector * Update spicepod.yaml
1 parent e2ece76 commit 7348741

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

vectors/s3/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Spice can use vector engines to store embeddings for datasets and provide efficient search functionality to the runtime.
44

5-
In this cookbook, Spice will create a simple vector search system over Github issues.
5+
In this cookbook, Spice will create a simple vector search system over Github pull requests.
66

77
## Prerequisites
88

@@ -20,7 +20,7 @@ In this cookbook, Spice will create a simple vector search system over Github is
2020
SELECT
2121
url,
2222
title,
23-
score -- this is a computed value (i.e. not in `describe issues;`).
23+
score -- this is a computed value (i.e. not in `describe pulls;`).
2424
FROM vector_search(pulls, 'bugs in DuckDB')
2525
ORDER BY score DESC
2626
LIMIT 4;

vectors/s3/spicepod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: v1
22
kind: Spicepod
3-
name: github_issues
3+
name: github_pull_requests
44

55
datasets:
66
- from: github:github.com/spiceai/spiceai/pulls

0 commit comments

Comments
 (0)