完全移除內網連接,專注外網API

變更項目:
- 刪除所有內網相關程式檔案
- 移除內網IP參考 (192.168.x.x)
- 精簡檔案結構,只保留核心程式
- 重命名主程式為 llama_chat.py
- 更新所有文檔移除內網內容
- 專注於外網 API 連接和多端點支援

保留檔案:
- llama_chat.py (主程式)
- llama_full_api.py (完整版)
- quick_test.py (快速測試)
- test_all_models.py (模型測試)
- README.md, 操作指南.md (文檔)
This commit is contained in:
2025-09-19 22:07:01 +08:00
parent e71495ece4
commit 3c0fba5fc8
12 changed files with 181 additions and 1043 deletions

View File

@@ -35,11 +35,11 @@ cd pj_llama
### 3. 執行對話程式
```bash
# 執行主程式(自動選擇最佳連接
python llama_full_api.py
# 或執行內網專用版本
# 執行主程式(智慧對話
python llama_chat.py
# 或執行完整版本(支援多端點)
python llama_full_api.py
```
## 📖 使用說明
@@ -86,8 +86,8 @@ AI: 1+1等於2。
| 檔案名稱 | 用途說明 |
|---------|---------|
| `llama_external_api.py` | **主程式** - 外網連接專用版本 |
| `llama_full_api.py` | 完整功能版本,支援所有端點 |
| `llama_chat.py` | **主程式** - 智慧對話程式 |
| `llama_full_api.py` | 完整功能版本,支援多端點切換 |
| `quick_test.py` | 快速測試連接是否正常 |
| `test_all_models.py` | 測試所有模型的工具 |