강의

멘토링

커뮤니티

Inflearn Community Q&A

joymaster's profile image
joymaster

asked

RAG Master: From Basics to Advanced Techniques (feat. LangChain)

Basic RAG pipeline setup

2.7 전체 RAG파이프라인 구성에서 4번째 줄 오류

Written on

·

58

0

from langchain.chains.combine_documents import create_stuff_documents_chain

이 부분에서 에러가 납니다

TypeError: Fields of type "<class 'langchain_core.runnables.base.Runnable'>" are not supported.,

 

python챗봇llmlangchainrag카카오공채-개발

Answer 1

0

pdstudio님의 프로필 이미지
pdstudio
Instructor

안녕하세요. 판다스 스튜디오입니다.

 

LangChain 1.0부터 langchain.chains 모듈이 langchain-classic 패키지로 이동되었습니다.

따라서, langchain을 1.0 이후 버전으로 설치하셨다면, 해당 오류가 발생할 수 있습니다.

임포트 경로를 다음과 같이 수정하시면 TypeError 에러가 해결됩니다.

# 기존 (에러 발생)
from langchain.chains.combine_documents import create_stuff_documents_chain

# 수정 후
from langchain_classic.chains.combine_documents import create_stuff_documents_chain

 

joymaster's profile image
joymaster

asked

Ask a question