Ever0330/universal-search ↗★ 0
@deepseek-ai/dsh-Universal-Search
Universal search provider supporting multiple APIs (OpenAI-compatible, DeepSeek, custom) for DeepSeek Harness web capability seam
AI Analysis
核心用途是为 DSH 提供通用的网页搜索能力支持。适合需要让 Agent 具备联网搜索功能的用户,支持配置多种兼容的 API 提供商。
Install
This plugin has no verified bundle, or compatibility checks failed. Read the repository notes first. Read the full README ↗
README
Read the full 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 |