Skip to content

Instantly share code, notes, and snippets.

@numpde
Created March 15, 2024 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save numpde/347600cb9f8ee3d11f827bed574b0030 to your computer and use it in GitHub Desktop.
Save numpde/347600cb9f8ee3d11f827bed574b0030 to your computer and use it in GitHub Desktop.
Typesense `notes` collection
{
"default_sorting_field": "",
"enable_nested_fields": true,
"fields": [
{
"facet": false,
"index": true,
"infix": false,
"locale": "",
"name": "summary",
"optional": false,
"sort": false,
"type": "string"
},
{
"facet": false,
"index": true,
"infix": false,
"locale": "",
"name": "note",
"optional": false,
"sort": false,
"type": "string"
},
{
"facet": true,
"index": true,
"infix": false,
"locale": "",
"name": "date",
"optional": false,
"sort": false,
"type": "string"
},
{
"facet": false,
"index": true,
"infix": false,
"locale": "",
"name": "tags",
"optional": false,
"sort": false,
"type": "string[]"
},
{
"facet": true,
"index": true,
"infix": false,
"locale": "",
"name": "from",
"optional": false,
"sort": false,
"type": "string"
},
{
"embed": {
"from": [
"note"
],
"model_config": {
"api_key": "{{OPENAI_API_KEY}}",
"model_name": "openai/text-embedding-3-small"
}
},
"facet": false,
"index": true,
"infix": false,
"locale": "",
"name": "embedding",
"num_dim": 1536,
"optional": false,
"sort": false,
"type": "float[]"
}
],
"name": "notes"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment