Skip to main content

Writer

Writer is a platform to generate different language content.

This example goes over how to use LangChain to interact with Writer models.

You have to get the WRITER_API_KEY here.

from getpass import getpass

WRITER_API_KEY = getpass()
 ยทยทยทยทยทยทยทยท
import os

os.environ["WRITER_API_KEY"] = WRITER_API_KEY
from langchain.chains import LLMChain
from langchain_community.llms import Writer
from langchain_core.prompts import PromptTemplate
template = """Question: {question}

Answer: Let's think step by step."""

prompt = PromptTemplate.from_template(template)
# If you get an error, probably, you need to set up the "base_url" parameter that can be taken from the error log.

llm = Writer()
llm_chain = LLMChain(prompt=prompt, llm=llm)
question = "What NFL team won the Super Bowl in the year Justin Beiber was born?"

llm_chain.run(question)

Help us out by providing feedback on this documentation page: