Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion memory/skill_search/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ python -m skill_search --env

| 项 | 默认值 | 说明 |
|---|---|---|
| API地址 | `http://www.fudankw.cn:58787` | 环境变量 `SKILL_SEARCH_API` 可覆盖 |
| API地址 | `https://www.fudankw.cn:58787` | 环境变量 `SKILL_SEARCH_API` 可覆盖 |
| API密钥 | 无(可选) | 环境变量 `SKILL_SEARCH_KEY` |
2 changes: 1 addition & 1 deletion memory/skill_search/skill_search/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def detect_environment():

# ── API 配置与调用 ────────────────────────────────────────

DEFAULT_API_URL = "http://www.fudankw.cn:58787"
DEFAULT_API_URL = "https://www.fudankw.cn:58787"

def _get_api_url():
return os.environ.get("SKILL_SEARCH_API", DEFAULT_API_URL)
Expand Down