TEMPLATES Metadata (#13691)

Co-authored-by: Lance Martin <lance@langchain.dev>
This commit is contained in:
Erick Friis 2023-11-22 01:41:12 -05:00 committed by GitHub
parent e327bb4ba4
commit 78da34153e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
73 changed files with 491 additions and 71 deletions

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "anthropic-iterative-search"
version = "0.0.1"
description = ""
description = "A virtual research assistant with the ability to search Wikipedia and answer questions"
authors = []
readme = "README.md"
@ -18,6 +18,12 @@ langchain-cli = {extras = ["serve"], version = "^0.0.13"}
export_module = "anthropic_iterative_search"
export_attr = "chain"
[tool.templates-hub]
use-case = "research"
author = "LangChain"
integrations = ["Anthropic", "Wikipedia"]
tags = ["research", "agents"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,10 +1,10 @@
# basic-critique-revise
TODO: What does this package do
Iteratively generate schema candidates and revise them based on errors.
## Environment Setup
TODO: What environment variables need to be set (if any)
This template uses OpenAI function calling, so you will need to set the `OPENAI_API_KEY` environment variable in order to use this template.
## Usage

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "basic_critique_revise"
version = "0.0.1"
description = ""
description = "Iteratively generate schema candidates and revise based on errors"
authors = []
readme = "README.md"
@ -19,6 +19,12 @@ sse-starlette = "^1.6.5"
export_module = "basic_critique_revise"
export_attr = "chain"
[tool.templates-hub]
use-case = "research"
author = "LangChain"
integrations = ["OpenAI", "Function Calling", "Pydantic"]
tags = ["research", "function-calling"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "cassandra-entomology-rag"
version = "0.0.1"
description = ""
description = "RAG using Apache Cassandra® or Astra DB"
authors = [
"Stefano Lottini <stefano.lottini@datastax.com>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "cassandra_entomology_rag"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "DataStax"
integrations = ["OpenAI", "Cassandra"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "cassandra-synonym-caching"
version = "0.0.1"
description = ""
description = "LLM caching backed by Apache Cassandra® or Astra DB"
authors = [
"Stefano Lottini <stefano.lottini@datastax.com>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "cassandra_synonym_caching"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "DataStax"
integrations = ["OpenAI", "Cassandra"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "chain-of-note-wiki"
version = "0.0.1"
description = ""
description = "Implementation of Chain of Note prompting for Wikipedia."
authors = []
readme = "README.md"
@ -21,6 +21,12 @@ sse-starlette = "^1.6.5"
export_module = "chain_of_note_wiki"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["Anthropic", "Wikipedia", "LangChain Hub"]
tags = ["paper", "prompt-hub"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "chat-bot-feedback"
version = "0.0.1"
description = ""
description = "Evaluate your chatbot without human feedback"
authors = []
readme = "README.md"
@ -21,6 +21,12 @@ sse-starlette = "^1.6.5"
export_module = "chat_bot_feedback.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "evaluation"
author = "LangChain"
integrations = ["OpenAI", "LangSmith"]
tags = ["langsmith"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "csv-agent"
version = "0.0.1"
description = ""
description = "Analyze csv data with Pandas and OpenAI"
authors = []
readme = "README.md"
@ -24,6 +24,12 @@ langchain-cli = ">=0.0.15"
export_module = "csv_agent"
export_attr = "agent_executor"
[tool.templates-hub]
use-case = "question-answering"
author = "LangChain"
integrations = ["OpenAI", "Pandas"]
tags = ["data", "agents"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "elastic-query-generator"
version = "0.0.1"
description = ""
description = "Interact with Elasticsearch analytics databases using natural language"
authors = []
readme = "README.md"
@ -18,6 +18,12 @@ langchain-cli = ">=0.0.15"
export_module = "elastic_query_generator"
export_attr = "chain"
[tool.templates-hub]
use-case = "query"
author = "LangChain"
integrations = ["Elasticsearch", "OpenAI"]
tags = ["query-generation"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "extraction-anthropic-functions"
version = "0.1.0"
description = ""
description = "Use Anthropic function calling for tasks like extraction or tagging"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "extraction_anthropic_functions"
export_attr = "chain"
[tool.templates-hub]
use-case = "extraction"
author = "LangChain"
integrations = ["Anthropic", "Function Calling"]
tags = ["function-calling", "tagging", "extraction"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "extraction-openai-functions"
version = "0.1.0"
description = ""
description = "Use OpenAI function calling for tasks like extraction or tagging"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -19,6 +19,12 @@ langchain-cli = ">=0.0.15"
export_module = "extraction_openai_functions"
export_attr = "chain"
[tool.templates-hub]
use-case = "extraction"
author = "LangChain"
integrations = ["OpenAI", "Function Calling"]
tags = ["function-calling", "tagging", "extraction"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "guardrails-output-parser"
version = "0.0.1"
description = ""
description = "Use guardrails-ai to validate LLM output"
authors = []
readme = "README.md"
@ -21,6 +21,12 @@ sse-starlette = "^1.6.5"
export_module = "guardrails_output_parser.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "validation"
author = "LangChain"
integrations = ["Guardrails", "OpenAI"]
tags = ["moderation"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "hybrid-search-weaviate"
version = "0.1.0"
description = ""
description = "Improve accuracy and relevance with Weaviate hybrid search"
authors = ["Erika Cardenas <erika@weaviate.io>"]
readme = "README.md"
@ -24,6 +24,12 @@ version = "^1.0.0"
export_module = "hybrid_search_weaviate"
export_attr = "chain"
[tool.templates-hub]
use-case = "search"
author = "Weaviate"
integrations = ["Weaviate", "OpenAI"]
tags = ["hybrid-search", "vectordb"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "hyde"
version = "0.0.1"
description = ""
description = "Retrieval with Hypothetical Document Embeddings (HyDE)"
authors = []
readme = "README.md"
@ -22,6 +22,12 @@ sse-starlette = "^1.6.5"
export_module = "hyde.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "ChromaDB"]
tags = ["paper"]
[tool.poe.tasks.start]
cmd = "uvicorn langchain_cli.dev_scripts:create_demo_server --reload --port $port --host $host"
args = [

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "llama2-functions"
version = "0.1.0"
description = ""
description = "Extraction with a JSON-output LLaMA2 model"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -19,6 +19,12 @@ langchain-cli = ">=0.0.15"
export_module = "llama2_functions"
export_attr = "chain"
[tool.templates-hub]
use-case = "extraction"
author = "LangChain"
integrations = ["Llama.cpp", "Replicate"]
tags = ["local-llm", "function-calling"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "mongo-parent-document-retrieval"
version = "0.0.1"
description = ""
description = "RAG using MongoDB and OpenAI"
authors = []
readme = "README.md"
@ -22,6 +22,12 @@ sse-starlette = "^1.6.5"
export_module = "mongo_parent_document_retrieval"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["MongoDB", "OpenAI"]
tags = ["vectordb"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "neo4j-advanced-rag"
version = "0.1.0"
description = ""
description = "Balance precise embeddings and context retention with advanced strategies"
authors = [
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
]
@ -18,6 +18,12 @@ neo4j = "^5.14.0"
export_module = "neo4j_advanced_rag"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Neo4j"
integrations = ["Neo4j", "OpenAI"]
tags = ["vectordb", "parent", "summarization"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "neo4j-cypher-ft"
version = "0.1.0"
description = ""
description = "Interact with a Neo4j graph database using natural language"
authors = [
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
]
@ -20,6 +20,12 @@ langchain-cli = ">=0.0.15"
export_module = "neo4j_cypher_ft"
export_attr = "chain"
[tool.templates-hub]
use-case = "query"
author = "Neo4j"
integrations = ["Neo4j", "OpenAI"]
tags = ["search", "graph-database", "query"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "neo4j-cypher-memory"
version = "0.1.0"
description = ""
description = "Conversational interface for a Neo4j graph database"
authors = [
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
]
@ -20,6 +20,12 @@ langchain-cli = ">=0.0.15"
export_module = "neo4j_cypher_memory"
export_attr = "chain"
[tool.templates-hub]
use-case = "query"
author = "Neo4j"
integrations = ["Neo4j", "OpenAI"]
tags = ["conversation", "graph-database"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "neo4j-cypher"
version = "0.1.0"
description = ""
description = "Natural language interface for a Neo4j graph database"
authors = [
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
]
@ -20,6 +20,12 @@ langchain-cli = ">=0.0.15"
export_module = "neo4j_cypher"
export_attr = "chain"
[tool.templates-hub]
use-case = "query"
author = "Neo4j"
integrations = ["Neo4j", "OpenAI"]
tags = ["search", "graph-database"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "neo4j-generation"
version = "0.0.1"
description = ""
description = "Knowledge graph extraction with Neo4j AuraDB"
authors = [
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
]
@ -20,6 +20,12 @@ langchain-cli = ">=0.0.15"
export_module = "neo4j_generation.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "extraction"
author = "Neo4j"
integrations = ["Neo4j", "OpenAI"]
tags = ["graph-database", "search"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "neo4j-parent"
version = "0.1.0"
description = ""
description = "Balance precise embeddings and context retention with Neo4j hybrid search"
authors = [
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "neo4j_parent"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Neo4j"
integrations = ["Neo4j", "OpenAI"]
tags = ["hybrid-search", "graph-database"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "neo4j-vector-memory"
version = "0.1.0"
description = ""
description = "Store conversational flows in a Neo4j graph database"
authors = [
"Tomaz Bratanic <tomaz.bratanic@neo4j.com>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "neo4j_vector_memory"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Neo4j"
integrations = ["Neo4j", "OpenAI"]
tags = ["graph-database", "conversation"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "openai-functions-agent"
version = "0.1.0"
description = ""
description = "Agent using OpenAI function calling to execute functions, including search"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -20,6 +20,12 @@ langchain-cli = ">=0.0.15"
export_module = "openai_functions_agent"
export_attr = "agent_executor"
[tool.templates-hub]
use-case = "research"
author = "LangChain"
integrations = ["OpenAI", "Tavily"]
tags = ["search", "agents", "function-calling"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "openai-functions-tool-retrieval-agent"
version = "0.0.1"
description = ""
description = "Use large numbers of tools with tool retrieval strategies"
authors = []
readme = "README.md"
@ -21,6 +21,12 @@ sse-starlette = "^1.6.5"
export_module = "openai_functions_tool_retrieval_agent"
export_attr = "agent_executor"
[tool.templates-hub]
use-case = "agents"
author = "LangChain"
integrations = ["OpenAI", "FAISS"]
tags = ["agents", "function-calling"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "pii_protected_chatbot"
version = "0.0.1"
description = ""
description = "Flag PII before passing it to the LLM"
authors = []
readme = "README.md"
@ -20,6 +20,12 @@ sse-starlette = "^1.6.5"
export_module = "pii_protected_chatbot.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "chatbot"
author = "LangChain"
integrations = ["OpenAI", "Microsoft Presidio"]
tags = ["data", "redaction"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "pirate-speak-configurable"
version = "0.0.1"
description = ""
description = "Use Configurable Alternatives to allow clients to choose their Runnables"
authors = []
readme = "README.md"
@ -21,6 +21,12 @@ sse-starlette = "^1.6.5"
export_module = "pirate_speak_configurable"
export_attr = "chain"
[tool.templates-hub]
use-case = "chatbot"
author = "LangChain"
integrations = ["Cohere", "Anthropic", "OpenAI"]
tags = ["configurable"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "pirate-speak"
version = "0.0.1"
description = ""
description = "Get started with a simple template that speaks like a pirate"
authors = []
readme = "README.md"
@ -19,6 +19,12 @@ sse-starlette = "^1.6.5"
export_module = "pirate_speak.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "chatbot"
author = "LangChain"
integrations = ["OpenAI"]
tags = ["getting-started"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "plate-chain"
version = "0.0.1"
description = ""
description = "Parse data from laboratory plates into standardized formats"
authors = []
readme = "README.md"
@ -20,6 +20,12 @@ sse-starlette = "^1.6.5"
export_module = "plate_chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "extraction"
author = "Sphinx Bio"
integrations = ["OpenAI"]
tags = ["bio", "data"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "astradb_entomology_rag"
version = "0.0.1"
description = ""
description = "RAG using AstraDB"
authors = [
"Stefano Lottini <stefano.lottini@datastax.com>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "astradb_entomology_rag"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Datastax"
integrations = ["AstraDB"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-aws-bedrock"
version = "0.1.0"
description = ""
description = "RAG using AWS Bedrock"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -22,6 +22,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_aws_bedrock"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "FAISS"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-aws-kendra"
version = "0.0.1"
description = ""
description = "RAG using AWS-Kendra and anthropic"
authors = []
readme = "README.md"
@ -21,6 +21,12 @@ sse-starlette = "^1.6.5"
export_module = "rag_aws_kendra.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["AWS"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-chroma-private"
version = "0.1.0"
description = ""
description = "Private RAG using local LLM, embeddings, vectorstore"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -22,6 +22,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_chroma_private"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Chroma", "Gpt4all", "Ollama"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-chroma"
version = "0.1.0"
description = ""
description = "RAG using Chroma"
authors = [
"Erick Friis <erick@langchain.dev>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_chroma"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Chroma"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-codellama-fireworks"
version = "0.1.0"
description = ""
description = "RAG using OSS LLMs via Fireworks"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -22,6 +22,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_codellama_fireworks"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Elastic"
integrations = ["OpenAI", "Fireworks"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -23,6 +23,12 @@ sse-starlette = "^1.6.5"
export_module = "rag_conversation_zep"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Elastic"
integrations = ["OpenAI", "Zep"]
tags = ["vectordbs"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-conversation"
version = "0.1.0"
description = ""
description = "Conversational RAG using Pinecone"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -22,6 +22,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_conversation"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Elastic"
integrations = ["OpenAI", "Pinecone"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-elasticsearch"
version = "0.0.1"
description = ""
description = "RAG using Elasticsearch"
authors = [
"Joe McElroy <joseph.mcelroy@elastic.co>",
]
@ -23,6 +23,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_elasticsearch"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Elastic"
integrations = ["OpenAI", "Elasticsearch"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-fusion"
version = "0.0.1"
description = ""
description = "RAG using RAG fusion approach"
authors = []
readme = "README.md"
@ -19,6 +19,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_fusion.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Pinecone"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-google-cloud-vertexai-search"
version = "0.0.1"
description = ""
description = "RAG using Google Vertex AI Search"
authors = ["Juan Calvo <juan.calvo@datatonic.com>"]
readme = "README.md"
@ -20,6 +20,12 @@ sse-starlette = "^1.6.5"
export_module = "rag_google_cloud_vertexai_search"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Datatonic"
integrations = ["OpenAI", "Google"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-gpt-crawler"
version = "0.1.0"
description = ""
description = "Use gpt-crawler to build a chat app for any website"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_gpt_crawler"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Google"
integrations = ["OpenAI", "Chromadb"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-matching-engine"
version = "0.0.1"
description = ""
description = "RAG using Google Cloud Platform's Vertex AI"
authors = ["Leonid Kuligin"]
readme = "README.md"
@ -19,6 +19,12 @@ sse-starlette = "^1.6.5"
export_module = "rag_matching_engine"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Google"
integrations = ["OpenAI", "Google"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-momento-vector-index"
version = "0.0.1"
description = ""
description = "RAG on momento vectorDB"
authors = []
readme = "README.md"
@ -27,6 +27,12 @@ langserve = "^0.0.21"
export_module = "rag_momento_vector_index"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Momento"]
tags = ["vectordbs"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-mongo"
version = "0.1.0"
description = ""
description = "RAG on MongDB"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_mongo"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["MongoDB", "OpenAI"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-multi-index-fusion"
version = "0.0.1"
description = ""
description = "RAG with routing and fusion between different domain-specific retrievers"
authors = []
readme = "README.md"
@ -24,6 +24,12 @@ sse-starlette = "^1.6.5"
export_module = "rag_multi_index_fusion"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Wikipedia", "Arxiv"]
tags = ["vectordbs", "routing"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-multi-index-router"
version = "0.0.1"
description = ""
description = "RAG with routing between different domain-specific retrievers"
authors = []
readme = "README.md"
@ -24,6 +24,12 @@ sse-starlette = "^1.6.5"
export_module = "rag_multi_index_router"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Wikipedia", "Arxiv"]
tags = ["vectordbs", "routing"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-pinecone-multi-query"
version = "0.1.0"
description = ""
description = "RAG with multi-query retriever using Pinecone"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_pinecone_multi_query"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Pinecone"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -22,6 +22,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_pinecone_rerank"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Pinecone", "Cohere"]
tags = ["vectordbs","post-processing"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-pinecone"
version = "0.1.0"
description = ""
description = "RAG using Pinecone"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_pinecone"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Pinecone"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -33,6 +33,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_redis.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Redis"
integrations = ["OpenAI", "Redis"]
tags = ["vectordbs"]
[tool.poe.tasks.start]
cmd = "uvicorn langchain_cli.dev_scripts:create_demo_server --reload --port $port --host $host"
args = [

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-self-query"
version = "0.0.1"
description = ""
description = "RAG with metadata filtering using self-query retriever on Elasticsearch vector store"
authors = []
readme = "README.md"
@ -23,6 +23,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_self_query"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Elasticsearch"]
tags = ["vectordbs"]
[build-system]
requires = ["poetry-core",]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-semi-structured"
version = "0.1.0"
description = ""
description = "RAG on semi-structured "
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -24,6 +24,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_semi_structured"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI", "Chroma", "Unstructured"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-singlestoredb"
version = "0.0.1"
description = ""
description = "RAG using SingleStoreDB"
authors = [
"Alex Peng <apeng@singlestore.com>"
]
@ -23,6 +23,12 @@ sse-starlette = "^1.6.5"
export_module = "rag_singlestoredb"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "SingleStoreDB"
integrations = ["OpenAI", "SingleStoreDB"]
tags = ["vectordbs"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-supabase"
version = "0.1.0"
description = ""
description = "RAG using Supabase retriver"
authors = [
"Greg Richardson <greg@supabase.io>",
]
@ -26,6 +26,12 @@ version = "^1.0.0"
export_module = "rag_supabase.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Supabase"
integrations = ["OpenAI", "Supabase"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-timescale-conversation"
version = "0.1.0"
description = ""
description = "Conversational RAG using timescale-vector DB as retriver"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -24,6 +24,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_timescale_conversation"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Timescale"
integrations = ["OpenAI", "Timescale"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-timescale-hybrid-search-time"
version = "0.0.1"
description = ""
description = "RAG using timescale-vector DB with the self-query retriver for metadata filtering on time"
authors = []
readme = "README.md"
@ -22,6 +22,12 @@ langchain-cli = ">=0.0.15"
export_module = "rag_timescale_hybrid_search_time.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Timescale"
integrations = ["OpenAI", "Timescale"]
tags = ["vectordbs", "hybrid-search", "timeseries"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-vectara-multiquery"
version = "0.1.0"
description = ""
description = "RAG using vectara with multiquery retriever"
authors = [
"Ofer Mendelevitch <ofer@vectara.com>",
]
@ -25,6 +25,12 @@ version = "^1.0.0"
export_module = "rag_vectara_multiquery"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Vectara"
integrations = ["OpenAI", "Vectara"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-vectara"
version = "0.1.0"
description = ""
description = "RAG using vectara retriever"
authors = [
"Ofer Mendelevitch <ofer@vectara.com>",
]
@ -25,6 +25,12 @@ version = "^1.0.0"
export_module = "rag_vectara"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Vectara"
integrations = ["OpenAI", "Vectara"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rag-weaviate"
version = "0.1.0"
description = ""
description = "RAG using Weaviate retriever"
authors = [
"Erika Cardenas <erika@weaviate.io>",
]

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "research-assistant"
version = "0.0.1"
description = ""
description = "Uses GPT Researcher as a research agent"
authors = []
readme = "README.md"
@ -22,6 +22,12 @@ sse-starlette = "^1.6.5"
export_module = "research_assistant"
export_attr = "chain"
[tool.templates-hub]
use-case = "research"
author = "LangChain"
integrations = ["OpenAI"]
tags = ["data", "agents"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "retrieval-agent"
version = "0.0.1"
description = ""
description = "Retrieval agent for Azure OpenAI"
authors = []
readme = "README.md"
@ -20,6 +20,12 @@ sse-starlette = "^1.6.5"
export_module = "retrieval_agent"
export_attr = "agent_executor"
[tool.templates-hub]
use-case = "research"
author = "LangChain"
integrations = ["OpenAI","Azure"]
tags = ["data", "agents"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "rewrite-retrieve-read"
version = "0.0.1"
description = ""
description = "Query transformation using the rewrite-retrieve-read to improve retrieval"
authors = []
readme = "README.md"
@ -18,6 +18,12 @@ langchain-cli = ">=0.0.15"
export_module = "rewrite_retrieve_read.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI"]
tags = ["paper", "prompt-hub"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "self-query-supabase"
version = "0.1.0"
description = ""
description = "QA with Supabase using natural language"
authors = [
"Greg Richardson <greg@supabase.io>",
]
@ -27,6 +27,12 @@ version = "^1.0.0"
export_module = "self_query_supabase.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "Supabase"
integrations = ["OpenAI", "Supabase"]
tags = ["vectordbs"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "solo-performance-prompting-agent"
version = "0.0.1"
description = ""
description = "Agent that transforms a single LLM into a cognitive synergist that has multiple points of view"
authors = []
readme = "README.md"
@ -20,6 +20,12 @@ sse-starlette = "^1.6.5"
export_module = "solo_performance_prompting_agent.agent"
export_attr = "agent_executor"
[tool.templates-hub]
use-case = "research"
author = "LangChain"
integrations = ["OpenAI"]
tags = ["data", "agents"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "sql-llama2"
version = "0.1.0"
description = ""
description = "QA with a SQL database using natural language and LLaMA2-13b"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -19,6 +19,12 @@ langchain-cli = ">=0.0.15"
export_module = "sql_llama2"
export_attr = "chain"
[tool.templates-hub]
use-case = "sql"
author = "LangChain"
integrations = ["Replicate"]
tags = ["sql"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "sql-llamacpp"
version = "0.1.0"
description = ""
description = "Private QA with a SQL database using natural language and a local LLM via llama.cpp"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -19,6 +19,12 @@ langchain-cli = ">=0.0.15"
export_module = "sql_llamacpp"
export_attr = "chain"
[tool.templates-hub]
use-case = "sql"
author = "LangChain"
integrations = ["LLamacpp"]
tags = ["sql"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "sql-ollama"
version = "0.1.0"
description = ""
description = "Private QA with a SQL database using natural language and a local LLM"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -18,6 +18,12 @@ langchain-cli = ">=0.0.15"
export_module = "sql_ollama"
export_attr = "chain"
[tool.templates-hub]
use-case = "sql"
author = "LangChain"
integrations = ["Ollama"]
tags = ["sql"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,6 +1,6 @@
# sql-pgvector
This template enables user to use `pgvector` for combining postgreSQL with semantic search / RAG.
This template enables user to use `pgvector` for combining postgreSQL with semantic search / RAG.
It uses [PGVector](https://github.com/pgvector/pgvector) extension as shown in the [RAG empowered SQL cookbook](cookbook/retrieval_in_sql.ipynb)

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "sql-pgvector"
version = "0.0.1"
description = ""
description = "Use pgvector for combining postgreSQL with semantic search / RAG"
authors = []
readme = "README.md"
@ -21,6 +21,12 @@ sse-starlette = "^1.6.5"
export_module = "sql_pgvector"
export_attr = "chain"
[tool.templates-hub]
use-case = "sql"
author = "LangChain"
integrations = ["OpenAI"]
tags = ["sql"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "stepback-qa-prompting"
version = "0.0.1"
description = ""
description = "Use Step-Back prompting to improve retrieval"
authors = []
readme = "README.md"
@ -18,6 +18,12 @@ langchain-cli = ">=0.0.15"
export_module = "stepback_qa_prompting.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "rag"
author = "LangChain"
integrations = ["OpenAI"]
tags = ["paper"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "summarize-anthropic"
version = "0.1.0"
description = ""
description = "This template uses Anthropic's `Claude2` to summarize long documents."
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -20,6 +20,12 @@ langchain-cli = ">=0.0.15"
export_module = "summarize_anthropic"
export_attr = "chain"
[tool.templates-hub]
use-case = "summarization"
author = "LangChain"
integrations = ["Anthropic"]
tags = ["summarization"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "vertexai-chuck-norris"
version = "0.0.1"
description = ""
description = "This template makes jokes about Chuck Norris using Vertex AI PaLM2"
authors = []
readme = "README.md"
@ -19,6 +19,12 @@ sse-starlette = "^1.6.5"
export_module = "vertexai_chuck_norris.chain"
export_attr = "chain"
[tool.templates-hub]
use-case = "chatbot"
author = "LangChain"
integrations = ["Google"]
tags = ["conversation"]
[build-system]
requires = [
"poetry-core",

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "xml-agent"
version = "0.1.0"
description = ""
description = "Agent that uses XML syntax to communicate its decisions of what actions to take"
authors = [
"Lance Martin <lance@langchain.dev>",
]
@ -21,6 +21,12 @@ langchain-cli = ">=0.0.15"
export_module = "xml_agent"
export_attr = "agent_executor"
[tool.templates-hub]
use-case = "agent"
author = "LangChain"
integrations = ["Anthropic"]
tags = ["agents"]
[build-system]
requires = [
"poetry-core",