diff --git a/README.md b/README.md index 9772981e..eeec5300 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Go to the [examples directory](examples) to try out with any of the examples, fo | [PDF Embedding](examples/pdf_embedding) | Parse PDF and index text embeddings for semantic search | | [Manuals LLM Extraction](examples/manuals_llm_extraction) | Extract structured information from a manual using LLM | | [Google Drive Text Embedding](examples/gdrive_text_embedding) | Index text documents from Google Drive | -| [Docs to Knowledge Graph](examples/docs_to_kg) | Extract relationships from Markdown documents and build a knowledge graph | +| [Docs to Knowledge Graph](examples/docs_to_knowledge_graph) | Extract relationships from Markdown documents and build a knowledge graph | | [Embeddings to Qdrant](examples/text_embedding_qdrant) | Index documents in a Qdrant collection for semantic search | More coming and stay tuned! If there's any specific examples you would like to see, please let us know in our [Discord community](https://discord.com/invite/zpA9S2DR7s) 🌱. diff --git a/examples/docs_to_kg/.env b/examples/docs_to_knowledge_graph/.env similarity index 100% rename from examples/docs_to_kg/.env rename to examples/docs_to_knowledge_graph/.env diff --git a/examples/docs_to_kg/README.md b/examples/docs_to_knowledge_graph/README.md similarity index 100% rename from examples/docs_to_kg/README.md rename to examples/docs_to_knowledge_graph/README.md diff --git a/examples/docs_to_kg/main.py b/examples/docs_to_knowledge_graph/main.py similarity index 100% rename from examples/docs_to_kg/main.py rename to examples/docs_to_knowledge_graph/main.py diff --git a/examples/docs_to_kg/markdown_files/1706.03762v7.md b/examples/docs_to_knowledge_graph/markdown_files/1706.03762v7.md similarity index 100% rename from examples/docs_to_kg/markdown_files/1706.03762v7.md rename to examples/docs_to_knowledge_graph/markdown_files/1706.03762v7.md diff --git a/examples/docs_to_kg/markdown_files/1810.04805v2.md b/examples/docs_to_knowledge_graph/markdown_files/1810.04805v2.md similarity index 100% rename from examples/docs_to_kg/markdown_files/1810.04805v2.md rename to examples/docs_to_knowledge_graph/markdown_files/1810.04805v2.md diff --git a/examples/docs_to_kg/markdown_files/rfc8259.md b/examples/docs_to_knowledge_graph/markdown_files/rfc8259.md similarity index 100% rename from examples/docs_to_kg/markdown_files/rfc8259.md rename to examples/docs_to_knowledge_graph/markdown_files/rfc8259.md diff --git a/examples/docs_to_kg/pyproject.toml b/examples/docs_to_knowledge_graph/pyproject.toml similarity index 100% rename from examples/docs_to_kg/pyproject.toml rename to examples/docs_to_knowledge_graph/pyproject.toml