* Update cognify and the networkx client to prepare for running in Neo4j * Fix for openai model * Add the fix to the infra so that the models can be passed to the library. Enable llm_provider to be passed. * Auto graph generation now works with neo4j * Added fixes for both neo4j and networkx * Explicitly name semantic node connections * Added updated docs, readme, chunkers and updates to cognify * Make docs build trigger only when changes on it happen * Update docs, test git actions * Separate cognify logic into tasks * Introduce dspy knowledge graph extraction --------- Co-authored-by: Boris Arzentar <borisarzentar@gmail.com>
17 lines
677 B
HTML
17 lines
677 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block meta %}
|
|
{{ super() }}
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:site_name" content="cognee" />
|
|
<meta property="og:description" content="Deterministic data engine for LLMs" />
|
|
<meta property="og:title" content="{{ page.title|striptags }}" />
|
|
<meta property="og:url" content="{{ page.canonical_url }}" />
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:site" content="@tricalt" />
|
|
<meta name="twitter:creator" content="@tricalt" />
|
|
<meta name="twitter:title" content="{{ page.title|striptags }}" />
|
|
<meta name="twitter:description" content="desc" />
|
|
|
|
{% endblock %}
|