Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.langchain.com/llms.txt

Use this file to discover all available pages before exploring further.

You.com is an AI productivity platform providing real-time web search and content extraction APIs designed for LLM applications.

Installation and setup

npm install @youdotcom-oss/langchain
Set your You.com API key. Get your API key at you.com/platform.
process.env.YDC_API_KEY = "your-api-key";

Tools

The package provides three DynamicStructuredTool instances: youSearch, youResearch, and youContents. See a usage example.
import { youSearch, youResearch, youContents } from "@youdotcom-oss/langchain";

Retriever

You.com is also available as a retriever via the LangChain.js community package. See a usage example.
import { YouRetriever } from "@langchain/community/retrievers/you";
For more details, see the You.com LangChain package README.