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. 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 |