Ever0330/universal-search0

@deepseek-ai/dsh-Universal-Search

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

AI 分析

核心用途是为 DSH 提供通用的网页搜索能力支持。适合需要让 Agent 具备联网搜索功能的用户,支持配置多种兼容的 API 提供商。

パッケージ
@deepseek-ai/dsh-Universal-Search
バージョン
0.1.0-rc.1
最終更新
2026/08/24

インストール

検証済み 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 |