Ever0330/universal-search ↗★ 0
@deepseek-ai/dsh-Universal-Search
支持多种 API(兼容 OpenAI、DeepSeek、自定义)的通用搜索提供商,用于 DeepSeek Harness 网页能力衔接
AI 分析
核心用途是为 DSH 提供通用的网页搜索能力支持。适合需要让 Agent 具备联网搜索功能的用户,支持配置多种兼容的 API 提供商。
安裝
此插件尚未提供可驗證的 bundle,或相容性檢查未通過。請先閱讀倉庫說明。 閱讀完整 README ↗
說明文件
閱讀完整 README ↗Default Configuration
The default configuration uses deepseek-official, which reuses the DeepSeek API Key configured in Settings > Models.
Custom API Configuration (Recommended)
The default configuration uses DeepSeek, but you can configure other API providers:
Method 1: Modify cordis.patch.yml
- id: universal-search
name: '@deepseek-ai/dsh-Universal-Search'
config:
provider: openai-compatible # or 'deepseek', 'custom'
apiKeyEnv: YOUR_API_KEY_ENV # Your API key environment variable name
baseURL: https://your-api.com/v1 # Optional, override default endpoint
model: your-model # Optional, override default model
Method 2: Set Environment Variable
## Configuration Options
| Option | Type | Default | Description |
|--------|------|---------|-------------|
| `provider` | string | `deepseek-official` | Provider type |
| `apiKey` | string | - | Literal API key |
| `apiKeyEnv` | string | - | Environment variable name for API key |
| `baseURL` | string | Based on provider | API endpoint base URL |
| `model` | string | Based on provider | Model name for search requests |
| `maxTokens` | number | `4096` | Maximum tokens for response |