Skip to content

Commit

Permalink
templates[patch]: template pyproject updates (#14035)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis committed Nov 29, 2023
1 parent 9c0ad0c commit 3c29b0d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
6 changes: 6 additions & 0 deletions templates/rag-weaviate/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions templates/self-query-qdrant/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion templates/skeleton-of-thought/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 7 additions & 1 deletion templates/skeleton-of-thought/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -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"

0 comments on commit 3c29b0d

Please sign in to comment.