Skip to main content
You can use LangChain Node.js SDK to interact with FriendliAI. This makes migration of existing applications already using LangChain particularly easy.

How to Use

Before you start, ensure you’ve already obtained the API_KEY from the Friendli Suite > Personal Settings > API Keys. FriendliAI is fully compatible with OpenAI, so you can use the @langchain/openai package by pointing it at the FriendliAI baseURL.

Instantiation

Now you can instantiate the model object and generate chat completions. Choose the example for your endpoint type:

Runnable Interface

FriendliAI supports both synchronous and asynchronous runnable methods to generate a response.

Chaining

You can chain the model with a prompt template. Prompt templates convert raw user input to better input to the LLM.
To get the string value instead of the message, add an output parser to the chain.

Tool Calling

Describe tools and their parameters, and let the model return a tool to invoke with the input arguments. Tool calling is extremely useful for enhancing the model’s capability to provide more comprehensive and actionable responses.

Define Tools to Use

You can define tools with Zod schemas and use them to generate tool calls.

Bind Tools to the Model

Now models can generate a tool calling response.

Generate a Tool-Assisted Message

Use the tool call results to generate a message.
For more information on how to use tools, check out the LangChain documentation.
Last modified on July 19, 2026