From 3c29b0ded540dc15915032ac46f0ab80dc073308 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Wed, 29 Nov 2023 10:21:18 -0800 Subject: [PATCH] templates[patch]: template pyproject updates (#14035) --- templates/rag-weaviate/pyproject.toml | 6 ++++++ templates/self-query-qdrant/pyproject.toml | 6 ++++++ templates/skeleton-of-thought/README.md | 2 +- templates/skeleton-of-thought/pyproject.toml | 8 +++++++- 4 files changed, 20 insertions(+), 2 deletions(-) diff --git a/templates/rag-weaviate/pyproject.toml b/templates/rag-weaviate/pyproject.toml index afdcd3a0b50..878ade01d4d 100644 --- a/templates/rag-weaviate/pyproject.toml +++ b/templates/rag-weaviate/pyproject.toml @@ -26,6 +26,12 @@ version = "^1.0.0" export_module = "rag_weaviate" export_attr = "chain" +[tool.templates-hub] +use-case = "rag" +author = "Weaviate" +integrations = ["Weaviate", "OpenAI"] +tags = ["vectordbs"] + [build-system] requires = [ "poetry-core", diff --git a/templates/self-query-qdrant/pyproject.toml b/templates/self-query-qdrant/pyproject.toml index f6f50caad7e..9c4c341f5a9 100644 --- a/templates/self-query-qdrant/pyproject.toml +++ b/templates/self-query-qdrant/pyproject.toml @@ -27,6 +27,12 @@ version = "^1.0.0" export_module = "self_query_qdrant" export_attr = "chain" +[tool.templates-hub] +use-case = "rag" +author = "Qdrant" +integrations = ["Qdrant", "OpenAI"] +tags = ["research", "agents"] + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" diff --git a/templates/skeleton-of-thought/README.md b/templates/skeleton-of-thought/README.md index 567cc2e7c67..b2ebeae52be 100644 --- a/templates/skeleton-of-thought/README.md +++ b/templates/skeleton-of-thought/README.md @@ -2,7 +2,7 @@ Implements "Skeleton of Thought" from [this](https://sites.google.com/view/sot-llm) paper. -This technique makes it possible to generate longer generates more quickly by first generating a skeleton, then generating each point of the outline. +This technique makes it possible to generate longer generations more quickly by first generating a skeleton, then generating each point of the outline. ## Environment Setup diff --git a/templates/skeleton-of-thought/pyproject.toml b/templates/skeleton-of-thought/pyproject.toml index 14124c29f0c..0aa21c7c3a2 100644 --- a/templates/skeleton-of-thought/pyproject.toml +++ b/templates/skeleton-of-thought/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "skeleton-of-thought" version = "0.0.1" -description = "" +description = "Generate longer outputs by building sections from a skeleton outline" authors = [] readme = "README.md" @@ -19,6 +19,12 @@ sse-starlette = "^1.6.5" export_module = "skeleton_of_thought" export_attr = "chain" +[tool.templates-hub] +use-case = "research" +author = "LangChain" +integrations = ["OpenAI"] +tags = ["research", "paper"] + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"