feat: 初始化 AgricultureQA 农技智能问答应用

- 搭建基于 Qwen3.5 的 Streamlit 农业技术知识问答应用
  - 支持思维链推理展示与模型参数调节
  - 新增项目核心文件:app.py、config.py、main.py
  - 新增工程化配置:pyproject.toml、justfile、Dockerfile、.gitignore
  - 完善 README 文档,包含快速开始、部署说明及项目结构
This commit is contained in:
zhenghu
2026-04-13 16:49:12 +08:00
parent 972c568a66
commit 256fe12605
9 changed files with 1142 additions and 2 deletions

14
pyproject.toml Normal file
View File

@@ -0,0 +1,14 @@
[project]
name = "agriculture-qa"
version = "0.1.0"
description = "农技智能问答 - 基于 Qwen3.5 大模型的农业技术知识问答应用"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"httpx>=0.28.1",
"streamlit>=1.52.1",
]
[[tool.uv.index]]
url = "https://mirrors.aliyun.com/pypi/simple"
default = true