scrimba
Multiple Chains
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Multiple Chains
AboutCommentsNotes
Multiple Chains
Expand for more info
index.js
run
preview
console
/* Multiple Chains */

import { PromptTemplate } from "langchain/prompts";
import { RunnableSequence } from "langchain/schema/runnable";
import { StringOutputParser } from "langchain/schema/output_parser";
import { ChatOpenAI } from "langchain/chat_models/openai";

const prompt1 = PromptTemplate.fromTemplate(
`What is the city {person} is from? Only respond with the name of the city.`
);

const model = new ChatOpenAI({});

const chain = prompt1.pipe(model).pipe(new StringOutputParser());

Console
"Die Stadt Chicago liegt in den Vereinigten Staaten."
,
/index.html
-24:45