Merge remote-tracking branch 'origin/main' into dev
This commit is contained in:
commit
5daa99183f
5 changed files with 13 additions and 5 deletions
|
|
@ -65,3 +65,7 @@ DB_NAME=cognee_db
|
||||||
|
|
||||||
# LITELLM Logging Level. Set to quiten down logging
|
# LITELLM Logging Level. Set to quiten down logging
|
||||||
LITELLM_LOG="ERROR"
|
LITELLM_LOG="ERROR"
|
||||||
|
|
||||||
|
# Set this environment variable to disable sending telemetry data
|
||||||
|
# TELEMETRY_DISABLED=1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -97,7 +97,7 @@ git push origin feature/your-feature-name
|
||||||
|
|
||||||
2. Create a Pull Request:
|
2. Create a Pull Request:
|
||||||
- Go to the [**cognee** repository](https://github.com/topoteretes/cognee)
|
- Go to the [**cognee** repository](https://github.com/topoteretes/cognee)
|
||||||
- Click "Compare & Pull Request"
|
- Click "Compare & Pull Request" and make sure to open PR against dev branch
|
||||||
- Fill in the PR template with details about your changes
|
- Fill in the PR template with details about your changes
|
||||||
|
|
||||||
## 5. 📜 Developer Certificate of Origin (DCO)
|
## 5. 📜 Developer Certificate of Origin (DCO)
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
cognee - memory layer for AI apps and Agents
|
cognee - Memory for AI Agents in 5 lines of code
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://www.youtube.com/watch?v=1bezuvLwJmw&t=2s">Demo</a>
|
<a href="https://www.youtube.com/watch?v=1bezuvLwJmw&t=2s">Demo</a>
|
||||||
|
|
@ -24,16 +24,16 @@
|
||||||
[](https://github.com/topoteretes/cognee/blob/main/LICENSE)
|
[](https://github.com/topoteretes/cognee/blob/main/LICENSE)
|
||||||
[](https://github.com/topoteretes/cognee/graphs/contributors)
|
[](https://github.com/topoteretes/cognee/graphs/contributors)
|
||||||
|
|
||||||
AI Agent responses you can rely on.
|
<a href="https://www.producthunt.com/posts/cognee?embed=true&utm_source=badge-top-post-badge&utm_medium=badge&utm_souce=badge-cognee" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=946346&theme=light&period=daily&t=1744472480704" alt="cognee - Memory for AI Agents  in 5 lines of code | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Build dynamic Agent memory using scalable, modular ECL (Extract, Cognify, Load) pipelines.
|
Build dynamic Agent memory using scalable, modular ECL (Extract, Cognify, Load) pipelines.
|
||||||
|
|
||||||
More on [use-cases](https://docs.cognee.ai/use_cases).
|
More on [use-cases](https://docs.cognee.ai/use-cases) and [evals](https://github.com/topoteretes/cognee/tree/main/evals)
|
||||||
|
|
||||||
<div style="text-align: center">
|
<div style="text-align: center">
|
||||||
<img src="https://raw.githubusercontent.com/topoteretes/cognee/refs/heads/dev/assets/cognee_benefits.png" alt="Why cognee?" width="100%" />
|
<img src="https://raw.githubusercontent.com/topoteretes/cognee/refs/heads/main/assets/cognee_benefits.png" alt="Why cognee?" width="50%" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -160,3 +160,4 @@ We are committed to making open source an enjoyable and respectful experience fo
|
||||||
## Star History
|
## Star History
|
||||||
|
|
||||||
[](https://star-history.com/#topoteretes/cognee&Date)
|
[](https://star-history.com/#topoteretes/cognee&Date)
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 353 KiB After Width: | Height: | Size: 2.3 MiB |
|
|
@ -13,6 +13,7 @@ from cognee.api.v1.datasets.routers import get_datasets_router
|
||||||
from cognee.api.v1.cognify.routers import get_code_pipeline_router, get_cognify_router
|
from cognee.api.v1.cognify.routers import get_code_pipeline_router, get_cognify_router
|
||||||
from cognee.api.v1.search.routers import get_search_router
|
from cognee.api.v1.search.routers import get_search_router
|
||||||
from cognee.api.v1.add.routers import get_add_router
|
from cognee.api.v1.add.routers import get_add_router
|
||||||
|
from cognee.api.v1.delete.routers import get_delete_router
|
||||||
from fastapi import Request
|
from fastapi import Request
|
||||||
from fastapi.encoders import jsonable_encoder
|
from fastapi.encoders import jsonable_encoder
|
||||||
from fastapi.exceptions import RequestValidationError
|
from fastapi.exceptions import RequestValidationError
|
||||||
|
|
@ -164,6 +165,8 @@ app.include_router(get_settings_router(), prefix="/api/v1/settings", tags=["sett
|
||||||
|
|
||||||
app.include_router(get_visualize_router(), prefix="/api/v1/visualize", tags=["visualize"])
|
app.include_router(get_visualize_router(), prefix="/api/v1/visualize", tags=["visualize"])
|
||||||
|
|
||||||
|
app.include_router(get_delete_router(), prefix="/api/v1/delete", tags=["delete"])
|
||||||
|
|
||||||
codegraph_routes = get_code_pipeline_router()
|
codegraph_routes = get_code_pipeline_router()
|
||||||
if codegraph_routes:
|
if codegraph_routes:
|
||||||
app.include_router(codegraph_routes, prefix="/api/v1/code-pipeline", tags=["code-pipeline"])
|
app.include_router(codegraph_routes, prefix="/api/v1/code-pipeline", tags=["code-pipeline"])
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue