Commit 81205fc78f295fc98c21ebb48b04534dae462966

Authored by tangwang
1 parent e39abf73

up

Showing 1 changed file with 39 additions and 0 deletions   Show diff stats
.env 0 → 100644
... ... @@ -0,0 +1,39 @@
  1 +# ====================
  2 +# OpenAI Configuration
  3 +# ====================
  4 +OPENAI_API_KEY=sk-c3b8d4db061840aa8effb748df2a997b
  5 +OPENAI_MODEL=qwen-plus
  6 +OPENAI_VISION_MODEL=qwen3-omni-flash
  7 +# Base URL for Qwen/DashScope (OpenAI-compatible API)
  8 +# 北京: https://dashscope.aliyuncs.com/compatible-mode/v1
  9 +# 弗吉尼亚: https://dashscope-us.aliyuncs.com/compatible-mode/v1
  10 +# 新加坡: https://dashscope-intl.aliyuncs.com/compatible-mode/v1
  11 +OPENAI_API_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
  12 +OPENAI_TEMPERATURE=1
  13 +OPENAI_MAX_TOKENS=1000
  14 +
  15 +# ====================
  16 +# Search Configuration
  17 +# ====================
  18 +TOP_K_RESULTS=30
  19 +SIMILARITY_THRESHOLD=0.6
  20 +
  21 +# Search API (see docs/搜索API对接指南.md)
  22 +SEARCH_API_BASE_URL=http://120.76.41.98:6002
  23 +SEARCH_API_TENANT_ID=170
  24 +
  25 +# ====================
  26 +# Application Configuration
  27 +# ====================
  28 +APP_HOST=0.0.0.0
  29 +APP_PORT=8000
  30 +DEBUG=true
  31 +LOG_LEVEL=INFO
  32 +
  33 +# ====================
  34 +# Data Paths
  35 +# ====================
  36 +RAW_DATA_PATH=./data/raw
  37 +PROCESSED_DATA_PATH=./data/processed
  38 +IMAGE_DATA_PATH=./data/images
  39 +
... ...