# chatchat-lite **Repository Path**: imclumsypanda/chatchat-lite ## Basic Information - **Project Name**: chatchat-lite - **Description**: 从零开始基于langgraph和streamlit实现基于本地模型的rag、agent应用 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 3 - **Created**: 2024-12-04 - **Last Updated**: 2025-08-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: RAG, langchain, chatchat, Agent, langgraph ## README # Chatchat-lite ## 运行环境 Python >= 3.9 建议使用 3.10 可参考如下命令进行环境创建 ```commandline conda create -n chatchat-lite python=3.10 -y conda activate chatchat-lite ``` ## 安装依赖 ```commandline pip install -r requirements.txt ``` ## 启动本地模型 当前项目仅支持接入 Ollama 模型 请前往 [Ollama官网](https://ollama.com/download) 下载最新版 Ollama, 安装完成后再命令行中执行以下命令: ```commandline ollama run qwen2.5 ``` ## 运行项目 ```commandline streamlit run st_main.py ```