templates[patch]: template pyproject updates (#14035)

This commit is contained in:
Erick Friis 2023-11-29 10:21:18 -08:00 committed by GitHub
parent 9c0ad0cebb
commit 3c29b0ded5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 2 deletions

View File

@ -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",

View File

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

View File

@ -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

View File

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