Skip to content

Commit

Permalink
Merge branch 'main' into fix_drift_search_doc
Browse files Browse the repository at this point in the history
  • Loading branch information
AlonsoGuevara authored Nov 14, 2024
2 parents 260132b + 0a58010 commit 573379b
Show file tree
Hide file tree
Showing 162 changed files with 2,848 additions and 980 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,9 @@ site/
docsite/
.yarn/
.pnp*

# PyCharm
.idea/

# Jupyter notebook
.ipynb_checkpoints/
34 changes: 34 additions & 0 deletions .semversioner/0.4.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"changes": [
{
"description": "Add update cli entrypoint for incremental indexing",
"type": "patch"
},
{
"description": "Allow some cicd jobs to skip PRs dedicated to doc updates only.",
"type": "patch"
},
{
"description": "Fix a file paths issue in the viz guide.",
"type": "patch"
},
{
"description": "Fix optional covariates update in incremental indexing",
"type": "patch"
},
{
"description": "Raise error on empty deltas for inc indexing",
"type": "patch"
},
{
"description": "add visualization guide to doc site",
"type": "patch"
},
{
"description": "fix streaming output error",
"type": "patch"
}
],
"created_at": "2024-11-08T23:13:05+00:00",
"version": "0.4.1"
}
4 changes: 4 additions & 0 deletions .semversioner/next-release/minor-20241113010525824646.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "minor",
"description": "Data model changes."
}
4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20241031001404444046.json

This file was deleted.

4 changes: 4 additions & 0 deletions .semversioner/next-release/patch-20241031230557819462.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "patch",
"description": "Cleanup of artifact outputs/schemas."
}
4 changes: 4 additions & 0 deletions .semversioner/next-release/patch-20241106004612053719.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "patch",
"description": "Implement dynamic community selection to global search"
}
4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20241106094228896260.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20241106184714830526.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20241106193551070554.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20241106225803494336.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20241106232311738461.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20241107010037320137.json

This file was deleted.

4 changes: 4 additions & 0 deletions .semversioner/next-release/patch-20241114012244853718.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "patch",
"description": "Centralized prompts and export all for easier injection."
}
4 changes: 4 additions & 0 deletions .semversioner/next-release/patch-20241114182805008149.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "patch",
"description": "Add Parquet as part of the default emitters when not pressent"
}
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
# Changelog

Note: version releases in the 0.x.y range may introduce breaking changes.

## 0.4.1

- patch: Add update cli entrypoint for incremental indexing
- patch: Allow some CI/CD jobs to skip PRs dedicated to doc updates only.
- patch: Fix a file paths issue in the viz guide.
- patch: Fix optional covariates update in incremental indexing
- patch: Raise error on empty deltas for inc indexing
- patch: add visualization guide to doc site
- patch: fix streaming output error

## 0.4.0

- minor: Add Incremental Indexing
- minor: Added DRIFT graph reasoning query module
- minor: embeddings moved to a different workflow
- minor: Add DRIFT search cli and example notebook
- patch: Add DRIFT search cli and example notebook
- patch: Add config for incremental updates
- patch: Add embeddings to subflow.
- patch: Add naive community merge using time period
Expand Down
4 changes: 2 additions & 2 deletions docs/config/env_vars.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ If the embedding target is `all`, and you want to only embed a subset of these f
### Embedded Fields

- `text_unit.text`
- `document.raw_content`
- `entity.name`
- `document.text`
- `entity.title`
- `entity.description`
- `relationship.description`
- `community.title`
Expand Down
2 changes: 1 addition & 1 deletion docs/examples_notebooks/drift_search.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
"# load description embeddings to an in-memory lancedb vectorstore\n",
"# to connect to a remote db, specify url and port values.\n",
"description_embedding_store = LanceDBVectorStore(\n",
" collection_name=\"entity_description_embeddings\",\n",
" collection_name=\"default-entity-description\",\n",
")\n",
"description_embedding_store.connect(db_uri=LANCEDB_URI)\n",
"entity_description_embeddings = store_entity_semantic_embeddings(\n",
Expand Down
Loading

0 comments on commit 573379b

Please sign in to comment.