scrimba
Attaching Function Call Information
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

Attaching Function Call Information
AboutCommentsNotes
Attaching Function Call Information
Expand for more info
index.js
run
preview
console
/* Attaching Function Call Information as Keyword Arguments (kwargs) */

import { PromptTemplate } from "langchain/prompts";
import { ChatOpenAI } from "langchain/chat_models/openai";

const prompt = PromptTemplate.fromTemplate(`Tell me a joke about {subject}`);

const model = new ChatOpenAI({});

const chain = prompt.pipe(model);

const result = await chain.invoke({ subject: "bears" });

console.log(result);

Console
/index.html
-10:41