id
stringlengths
14
15
text
stringlengths
23
2.21k
source
stringlengths
52
97
f405dc64e46e-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/atlas
f405dc64e46e-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/atlas
f405dc64e46e-3
It is broken into two parts: installation and setup, and then references to specific Atlas wrappers.Installation and Setup​Install the Python package with pip install nomicNomic is also included in langchains poetry extras poetry install -E allWrappers​VectorStore​There exists a wrapper around the Atlas neural da...
https://python.langchain.com/docs/integrations/providers/atlas
01fe99343ebe-0
Diffbot | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/diffbot
01fe99343ebe-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/diffbot
01fe99343ebe-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/diffbot
01fe99343ebe-3
Diffbot doesn't require any rules to read the content on a page. It starts with computer vision, which classifies a page into one of 20 possible types. Content is then interpreted by a machine learning model trained to identify the key attributes on a page based on its type. The result is a website transformed into cle...
https://python.langchain.com/docs/integrations/providers/diffbot
21ebb1668a9e-0
Aleph Alpha | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/aleph_alpha
21ebb1668a9e-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/aleph_alpha
21ebb1668a9e-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/aleph_alpha
e91d559debbd-0
LangChain Decorators ✨ | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-3
ju-bezdek/langchain-decoratorsMain principles and benefits:more pythonic way of writing codewrite multiline prompts that won't break your code flow with indentationmaking use of IDE in-built support for hinting, type checking and popup with docs to quickly peek in the function to see the prompt, parameters it consumes ...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-4
Here is how it works:Using Global settings:# define global settings for all prompty (if not set - chatGPT is the current default)from langchain_decorators import GlobalSettingsGlobalSettings.define_settings( default_llm=ChatOpenAI(temperature=0.0), this is default... can change it here globally default_streaming_...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-5
It should be for {audience} audience. (Max 15 words) """ passawait write_me_short_post(topic="old movies")Simplified streamingIf we want to leverage streaming:we need to define prompt as async function turn on the streaming on the decorator, or we can define PromptType with streaming oncapture the stream using...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-6
capture the stream even if the prompt call is hidden inside higher level method# only the prompts marked with capture_stream will be captured herewith StreamingContext(stream_to_stdout=True, callback=capture_stream_func): result = await run_prompt() print("Stream finished ... we can distinguish tokens thanks to a...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-7
simulate_conversation(human_input:str, agent_role:str="a pirate"): """ ## System message - note the `:system` sufix inside the <prompt:_role_> tag ```<prompt:system> You are a {agent_role} hacker. You mus act like one. You reply always in code, using python or javascript code block... for exa...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-8
""" passthe roles here are model native roles (assistant, user, system for chatGPT)Optional sectionsyou can define a whole sections of your prompt that should be optionalif any input in the section is missing, the whole section won't be renderedthe syntax for this is as follows:@llm_promptdef prompt_with_optional_pa...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-9
this can be tedious, that's why you can let the output parser gegnerate you the instructions based on the model (pydantic)from langchain_decorators import llm_promptfrom pydantic import BaseModel, Fieldclass TheOutputStructureWeExpect(BaseModel): name:str = Field (description="The name of the company") headline:s...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
e91d559debbd-10
``` <prompt:system> You are an assistant named {assistant_name}. Your role is to act as {assistant_role} ``` ```<prompt:user> Introduce your self (in less than 20 words) ``` """ personality = AssistantPersonality(assistant_name="John", assistant_role="a pirate")prin...
https://python.langchain.com/docs/integrations/providers/langchain_decorators
7cf96530b161-0
Unstructured | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/unstructured
7cf96530b161-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/unstructured
7cf96530b161-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/unstructured
7cf96530b161-3
Unstructured.IO extracts clean text from raw source documents like PDFs and Word documents. This page covers how to use the unstructured ecosystem within LangChain.Installation and Setup​If you are using a loader that runs locally, use the following steps to get unstructured and its dependencies running locally.Insta...
https://python.langchain.com/docs/integrations/providers/unstructured
7cf96530b161-4
shows how to use the most basic unstructured data loader. There are other file-specific data loaders available in the langchain.document_loaders module.from langchain.document_loaders import UnstructuredFileLoaderloader = UnstructuredFileLoader("state_of_the_union.txt")loader.load()If you instantiate the loader with Un...
https://python.langchain.com/docs/integrations/providers/unstructured
a5f6e7660815-0
Azure Cognitive Search | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/azure_cognitive_search_
a5f6e7660815-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/azure_cognitive_search_
a5f6e7660815-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/azure_cognitive_search_
35b253a603fc-0
Modal | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/modal
35b253a603fc-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/modal
35b253a603fc-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/modal
35b253a603fc-3
It is broken into two parts: Modal installation and web endpoint deploymentUsing deployed web endpoint with LLM wrapper class.Installation and Setup​Install with pip install modalRun modal token newDefine your Modal Functions and Webhooks​You must include a prompt. There is a rigid response structure:class Item(Bas...
https://python.langchain.com/docs/integrations/providers/modal
35b253a603fc-4
encoded_input = tokenizer(text, return_tensors='pt').input_ids output = model.generate(encoded_input, max_length=50, do_sample=True) return tokenizer.decode(output[0], skip_special_tokens=True)@stub.function()@modal.web_endpoint(method="POST")def get_text(item: Item): return {"prompt": run_gpt2.call(item.promp...
https://python.langchain.com/docs/integrations/providers/modal
35b253a603fc-5
Your web endpoint will acquire a persistent URL under the modal.run domain.LLM wrapper around Modal web endpoint​The Modal LLM wrapper class which will accept your deployed web endpoint's URL.from langchain.llms import Modalendpoint_url = "https://ecorp--custom-llm-endpoint.modal.run" # REPLACE ME with your deploye...
https://python.langchain.com/docs/integrations/providers/modal
aa448ae8ec75-0
ArangoDB | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/arangodb
aa448ae8ec75-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/arangodb
aa448ae8ec75-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/arangodb
4728ee7b09ba-0
Weather | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/weather
4728ee7b09ba-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/weather
4728ee7b09ba-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/weather
cbc8eba88505-0
Helicone | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/helicone
cbc8eba88505-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/helicone
cbc8eba88505-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/helicone
cbc8eba88505-3
"Helicone-Property-App": "mobile", })text = "What is a helicone?"print(llm(text))Helicone property docsPreviousHazy ResearchNextHologresWhat is Helicone?Quick startHow to enable Helicone cachingHow to use Helicone custom propertiesCommunityDiscordTwitterGitHubPythonJS/TSMoreHomepageBlogCopyright © 2023 LangChain,...
https://python.langchain.com/docs/integrations/providers/helicone
5a32cadcff26-0
Motherduck | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/motherduck
5a32cadcff26-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/motherduck
5a32cadcff26-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/motherduck
5a32cadcff26-3
The connection string is likely in the form:token="..."conn_str = f"duckdb:///md:{token}@my_db"SQLChain​You can use the SQLChain to query data in your Motherduck instance in natural language.from langchain import OpenAI, SQLDatabase, SQLDatabaseChaindb = SQLDatabase.from_uri(conn_str)db_chain = SQLDatabaseChain.from_...
https://python.langchain.com/docs/integrations/providers/motherduck
8c9b59613e58-0
AnalyticDB | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/analyticdb
8c9b59613e58-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/analyticdb
8c9b59613e58-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/analyticdb
8c9b59613e58-3
whether for semantic search or example selection.To import this vectorstore:from langchain.vectorstores import AnalyticDBFor a more detailed walkthrough of the AnalyticDB wrapper, see this notebookPreviousAmazon API GatewayNextAnnoyVectorStoreCommunityDiscordTwitterGitHubPythonJS/TSMoreHomepageBlogCopyright © 2023 Lan...
https://python.langchain.com/docs/integrations/providers/analyticdb
0118d76d5ff6-0
Milvus | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/milvus
0118d76d5ff6-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/milvus
0118d76d5ff6-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/milvus
0118d76d5ff6-3
It is broken into two parts: installation and setup, and then references to specific Milvus wrappers.Installation and Setup​Install the Python SDK with pip install pymilvusWrappers​VectorStore​There exists a wrapper around Milvus indexes, allowing you to use it as a vectorstore, whether for semantic search or exa...
https://python.langchain.com/docs/integrations/providers/milvus
9ebaeb164c79-0
Momento | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/momento
9ebaeb164c79-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/momento
9ebaeb164c79-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/momento
9ebaeb164c79-3
capability, and blazing-fast performance. With Momento Cache, you grab the SDK, you get an end point, input a few lines into your code, and you're off and running.This page covers how to use the Momento ecosystem within LangChain.Installation and Setup​Sign up for a free account here and get an auth tokenInstall the ...
https://python.langchain.com/docs/integrations/providers/momento
6f153fd769e4-0
CerebriumAI | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/cerebriumai
6f153fd769e4-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/cerebriumai
6f153fd769e4-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/cerebriumai
6f153fd769e4-3
It is broken into two parts: installation and setup, and then references to specific CerebriumAI wrappers.Installation and Setup​Install with pip install cerebriumGet an CerebriumAI api key and set it as an environment variable (CEREBRIUMAI_API_KEY)Wrappers​LLM​There exists an CerebriumAI LLM wrapper, which you c...
https://python.langchain.com/docs/integrations/providers/cerebriumai
4034119ceba8-0
2Markdown | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/tomarkdown
4034119ceba8-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/tomarkdown
4034119ceba8-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/tomarkdown
0b835c930b38-0
Writer | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/writer
0b835c930b38-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/writer
0b835c930b38-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/writer
0b835c930b38-3
It is broken into two parts: installation and setup, and then references to specific Writer wrappers.Installation and Setup​Get an Writer api key and set it as an environment variable (WRITER_API_KEY)Wrappers​LLM​There exists an Writer LLM wrapper, which you can access with from langchain.llms import WriterPrevio...
https://python.langchain.com/docs/integrations/providers/writer
668e43e06d7d-0
Replicate | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/replicate
668e43e06d7d-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/replicate
668e43e06d7d-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/replicate
668e43e06d7d-3
From here, we can initialize our model:llm = Replicate(model="replicate/dolly-v2-12b:ef0e1aefc61f8e096ebe4db6b2bacc297daf2ef6899f0f7e001ec445893500e5")And run it:prompt = """Answer the following yes/no question by reasoning step by step.Can a dog drive a car?"""llm(prompt)We can call any Replicate model (not just LLMs)...
https://python.langchain.com/docs/integrations/providers/replicate
a7ca8b0ee2db-0
Wolfram Alpha | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/wolfram_alpha
a7ca8b0ee2db-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/wolfram_alpha
a7ca8b0ee2db-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/wolfram_alpha
a7ca8b0ee2db-3
It answers factual queries by computing answers from externally sourced data.This page covers how to use the Wolfram Alpha API within LangChain.Installation and Setup​Install requirements with pip install wolframalphaGo to wolfram alpha and sign up for a developer account hereCreate an app and get your APP IDSet your...
https://python.langchain.com/docs/integrations/providers/wolfram_alpha
5ee9f367671c-0
Deep Lake | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/deeplake
5ee9f367671c-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/deeplake
5ee9f367671c-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/deeplake
973479322144-0
PipelineAI | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/pipelineai
973479322144-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/pipelineai
973479322144-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/pipelineai
973479322144-3
It is broken into two parts: installation and setup, and then references to specific PipelineAI wrappers.Installation and Setup​Install with pip install pipeline-aiGet a Pipeline Cloud api key and set it as an environment variable (PIPELINE_API_KEY)Wrappers​LLM​There exists a PipelineAI LLM wrapper, which you can...
https://python.langchain.com/docs/integrations/providers/pipelineai
3628ad3ac4d5-0
GPT4All | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/gpt4all
3628ad3ac4d5-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/gpt4all
3628ad3ac4d5-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/gpt4all
3628ad3ac4d5-3
n_threads=8)# Generate text. Tokens are streamed through the callback manager.model("Once upon a time, ", callbacks=callbacks)Model File​You can find links to model file downloads in the pyllamacpp repository.For a more detailed walkthrough of this, see this notebookPreviousGooseAINextGraphsignalInstallation and Setu...
https://python.langchain.com/docs/integrations/providers/gpt4all
fab7c3408671-0
College Confidential | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/college_confidential
fab7c3408671-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/college_confidential
fab7c3408671-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/college_confidential
a0436653e67d-0
Twitter | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/twitter
a0436653e67d-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/twitter
a0436653e67d-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/twitter
1756b061c2a2-0
Azure OpenAI | 🦜�🔗 Langchain
https://python.langchain.com/docs/integrations/providers/azure_openai
1756b061c2a2-1
Skip to main content🦜�🔗 LangChainDocsUse casesIntegrationsAPILangSmithJS/TS DocsCTRLKIntegrationsCallbacksChat modelsDocument loadersDocument transformersLLMsMemoryRetrieversText embedding modelsAgent toolkitsToolsVector storesGrouped by providerWandB TracingAI21 LabsAimAirbyteAirtableAleph AlphaAlibaba Cloud O...
https://python.langchain.com/docs/integrations/providers/azure_openai
1756b061c2a2-2
EndpointSearxNG Search APISerpAPIShale ProtocolSingleStoreDBscikit-learnSlackspaCySpreedlyStarRocksStochasticAIStripeTairTelegramTigris2MarkdownTrelloTruLensTwitterTypesenseUnstructuredVectaraVespaWeights & BiasesWeatherWeaviateWhatsAppWhyLabsWikipediaWolfram AlphaWriterYeager.aiYouTubeZepZillizIntegrationsGrouped by p...
https://python.langchain.com/docs/integrations/providers/azure_openai