File size: 452 Bytes
4aec76b |
1 2 3 4 5 6 7 8 9 10 |
"""LLM System Package: This package contains complete langchain-based LLM system for building RAG (Retrieval-Augmented Generation) applications.
It includes modules for:
- Core: Database management, chat history management, and data ingestion.
- Utils: Document loading, text splitting utility functions.
- Chains: Combines all other components to create a RAG chain for conversational AI applications.
"""
import langchain_community
import langchain
|