WRITER와 관련된 모든 기능
이 페이지는 LangChain 내에서 WRITER 생태계를 사용하는 방법을 다룹니다. 자세한 내용은 Writer 문서를 참조하세요. PalmyraWRITER가 개발한 Large Language Model (LLM)입니다. Writer API는 다양한 기능과 가격대를 가진 여러 Palmyra 하위 모델로 구동됩니다.

설치 및 설정

통합 패키지를 설치합니다
pip install langchain-writer
WRITER API key를 발급받아 환경 변수(WRITER_API_KEY)로 설정합니다

Chat model

from langchain_writer import ChatWriter
자세히 보기.

PDF Parser

from langchain_writer.pdf_parser import PDFParser
자세히 보기.

Text splitter

from langchain_writer.text_splitter import WriterTextSplitter

Tools calling

Functions

dict, Pydantic, python function 등을 통해 정의된 기본 function call을 지원합니다.

Graphs

from langchain_writer.tools import GraphTool
자세히 보기.

Web search tool

from langchain_writer.tools import WebSearchTool
자세히 보기.

Translation tool

from langchain_writer.tools import TranslationTool
자세히 보기.

---

<Callout icon="pen-to-square" iconType="regular">
    [Edit the source of this page on GitHub.](https://github.com/langchain-ai/docs/edit/main/src/oss/python/integrations/providers/writer.mdx)
</Callout>
<Tip icon="terminal" iconType="regular">
    [Connect these docs programmatically](/use-these-docs) to Claude, VSCode, and more via MCP for    real-time answers.
</Tip>
I