@san-francisco/sf-docs-embeddings 0.0.5 → 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,14 +3,14 @@
3
3
  </p>
4
4
 
5
5
  <p align="center" width="100%">
6
- <a href="https://github.com/city-of-san-francisco/sf-bot/actions/workflows/ci.yml">
7
- <img height="20" src="https://github.com/city-of-san-francisco/sf-bot/actions/workflows/ci.yml/badge.svg" />
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
8
  </a>
9
9
  <a href="https://github.com/city-of-san-francisco/license">
10
10
  <img height="20" src="https://img.shields.io/badge/license-SF-blue.svg"/>
11
11
  </a>
12
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-bot?filename=packages%2Fsf-docs-embeddings%2Fpackage.json"/>
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
14
  </a>
15
15
  </p>
16
16
 
@@ -33,7 +33,7 @@ This package demonstrates how to ship pre-computed embeddings as PGPM migrations
33
33
 
34
34
  ```bash
35
35
  # Install the RAG schema first
36
- pgpm deploy @sf-bot/rag-core
36
+ pgpm deploy @sf-rag-utils/rag-core
37
37
 
38
38
  # Then install this data package
39
39
  pgpm deploy @san-francisco/sf-docs-embeddings
@@ -68,7 +68,7 @@ SELECT * FROM rag.export_embeddings_csv('your-collection-id');
68
68
 
69
69
  ## Dependencies
70
70
 
71
- - `@sf-bot/rag-core`
71
+ - `@sf-rag-utils/rag-core`
72
72
 
73
73
  ## License
74
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.5",
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": "9c8c3d30c2621d9aebcbe41662c1331931a45123"
43
+ "gitHead": "87eb2c4e4c0b4ff6721e7516330a106c81da5121"
44
44
  }