TechStudy/LLM
2024. 11. 15.
[문제해결] 모델 사용시 model 이름이 겹친다는 경고문 해결하기
UserWarning: Field "model_name" in HuggingFaceInferenceAPIEmbeddings has conflict with protected namespace "model_". You may be able to resolve this warning by setting model_config['protected_namespaces'] = (). - 원인: 계속해서 업데이트되고 변화하는 langchain의 환경을 반영하지 못하는 HuggingFaceBgeEmbedding 사용 -> HuggingFaceBgeEmbedding 대신 HuggingFaceEmbedding 사용시 문제 해결! (bge 임베딩 모델 사용한다고 굳이 bge embedding 안써도 됨)