@san-francisco/sf-docs-embeddings 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -3,7 +3,15 @@
3
3
  </p>
4
4
 
5
5
  <p align="center" width="100%">
6
- <a href="https://github.com/city-of-san-francisco/license"><img height="20" src="https://img.shields.io/badge/license-SF-blue.svg"/></a>
6
+ <a href="https://github.com/city-of-san-francisco/sf-rag-utils/actions/workflows/ci.yml">
7
+ <img height="20" src="https://github.com/city-of-san-francisco/sf-rag-utils/actions/workflows/ci.yml/badge.svg" />
8
+ </a>
9
+ <a href="https://github.com/city-of-san-francisco/license">
10
+ <img height="20" src="https://img.shields.io/badge/license-SF-blue.svg"/>
11
+ </a>
12
+ <a href="https://www.npmjs.com/package/@san-francisco/sf-docs-embeddings">
13
+ <img height="20" src="https://img.shields.io/github/package-json/v/city-of-san-francisco/sf-rag-utils?filename=packages%2Fsf-docs-embeddings%2Fpackage.json"/>
14
+ </a>
7
15
  </p>
8
16
 
9
17
  # @san-francisco/sf-docs-embeddings
@@ -25,7 +33,7 @@ This package demonstrates how to ship pre-computed embeddings as PGPM migrations
25
33
 
26
34
  ```bash
27
35
  # Install the RAG schema first
28
- pgpm deploy @sf-bot/rag-core
36
+ pgpm deploy @sf-rag-utils/rag-core
29
37
 
30
38
  # Then install this data package
31
39
  pgpm deploy @san-francisco/sf-docs-embeddings
@@ -60,7 +68,7 @@ SELECT * FROM rag.export_embeddings_csv('your-collection-id');
60
68
 
61
69
  ## Dependencies
62
70
 
63
- - `@sf-bot/rag-core`
71
+ - `@sf-rag-utils/rag-core`
64
72
 
65
73
  ## License
66
74
 
@@ -1,7 +1,7 @@
1
1
  -- Deploy data/seed_collection to pg
2
2
  -- made with <3 @ constructive.io
3
3
 
4
- -- requires: @sf-bot/rag-core
4
+ -- requires: @sf-rag-utils/rag-core
5
5
 
6
6
  -- This is an example data package showing how to ship embeddings as migrations.
7
7
  -- In production, this would contain actual embeddings generated from SF documentation.
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@san-francisco/sf-docs-embeddings",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "author": "Dan Lynch <pyramation@gmail.com>",
5
5
  "description": "San Francisco documentation embeddings - example RAG data package",
6
- "homepage": "https://github.com/city-of-san-francisco/sf-bot",
6
+ "homepage": "https://github.com/city-of-san-francisco/sf-rag-utils",
7
7
  "license": "MIT",
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "https://github.com/city-of-san-francisco/sf-bot"
13
+ "url": "https://github.com/city-of-san-francisco/sf-rag-utils"
14
14
  },
15
15
  "bugs": {
16
- "url": "https://github.com/city-of-san-francisco/sf-bot/issues"
16
+ "url": "https://github.com/city-of-san-francisco/sf-rag-utils/issues"
17
17
  },
18
18
  "files": [
19
19
  "deploy",
@@ -40,5 +40,5 @@
40
40
  "makage": "0.1.9",
41
41
  "pgsql-test": "^2.18.15"
42
42
  },
43
- "gitHead": "99125dde46b9f6ded634f55e079fdd89b5dd0839"
43
+ "gitHead": "87eb2c4e4c0b4ff6721e7516330a106c81da5121"
44
44
  }