-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Cog 337 llama index support #186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
ec5fd80
feat: Add support for LlamaIndex Document type
dexters1 b05a07f
docs: Add Jupyer Notebook for cognee with llama index document type
dexters1 93445bf
feat: Add metadata migration from LlamaIndex document type
dexters1 804ca26
refactor: Change llama index migration function name
dexters1 c151d7b
chore: Add llama index core dependency
dexters1 fb84aa0
Merge branch 'COG-337-llama-index-support' of github.com:topoteretes/…
dexters1 7d222ee
Feature: Add ingest_data_with_metadata task
dexters1 094e45d
docs: Add description on why specific type checking is done
dexters1 d5aa316
fix: Add missing parameter to function call
dexters1 98dc18c
refactor: Move storing of data from async to sync function
dexters1 2615b35
refactor: Pretend ingest_data was changes instead of having two tasks
dexters1 e4c39e8
refactor: Use old name for data ingestion with metadata
dexters1 733caa7
refactor: Return ingest_data and save_data_to_storage Tasks
dexters1 8c7fdc4
refactor: Return previous ingestion Tasks to add function
dexters1 f13146d
Merge branch 'main' of github.com:topoteretes/cognee into COG-337-lla…
dexters1 cc53693
fix: Remove dict and use string for search query
dexters1 af99e4f
refactor: Add changes request in pull request
dexters1 417b119
Merge branch 'main' of github.com:topoteretes/cognee into COG-337-lla…
dexters1 4c7a4e2
fix: Resolve issue with llama-index being mandatory
dexters1 c4700b1
fix: Add install of llama-index to notebook
dexters1 f6e8294
Merge branch 'main' into COG-337-llama-index-support
borisarzentar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,7 +36,7 @@ boto3 = "^1.26.125" | |
| botocore="^1.35.54" | ||
| gunicorn = "^20.1.0" | ||
| sqlalchemy = "2.0.35" | ||
| instructor = "1.6.3" | ||
| instructor = "^1.5.2" | ||
| networkx = "^3.2.1" | ||
| aiosqlite = "^0.20.0" | ||
| pandas = "2.0.3" | ||
|
|
@@ -46,7 +46,7 @@ dlt = {extras = ["sqlalchemy"], version = "^1.2.0"} | |
| aiofiles = "^23.2.1" | ||
| qdrant-client = "^1.9.0" | ||
| graphistry = "^0.33.5" | ||
| tenacity = "^9.0.0" | ||
| tenacity = "^8.4.1" | ||
| weaviate-client = "4.6.7" | ||
| scikit-learn = "^1.5.0" | ||
| pypdf = "^4.1.0" | ||
|
|
@@ -70,6 +70,7 @@ asyncpg = "^0.29.0" | |
| alembic = "^1.13.3" | ||
| pgvector = "^0.3.5" | ||
| psycopg2 = {version = "^2.9.10", optional = true} | ||
| llama-index-core = "^0.11.22" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make this optional please |
||
|
|
||
| [tool.poetry.extras] | ||
| filesystem = ["s3fs", "botocore"] | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not fix the version? it is not a very reliable lib, as ti changed a few times already