Ever0330/universal-search0

@deepseek-ai/dsh-Universal-Search

Universal search provider supporting multiple APIs (OpenAI-compatible, DeepSeek, custom) for DeepSeek Harness web capability seam

包名
@deepseek-ai/dsh-Universal-Search
版本
0.1.0-rc.1
最近更新
2026年8月24日

安装

此插件尚未提供可验证的 bundle,或兼容性检查未通过。请先阅读仓库说明。 阅读完整 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 |