- translator/index.js: replace require() with static side-effect imports (ESM-safe), lazy-init registry maps to survive circular import order - openai-responses->openai: map max_output_tokens -> max_tokens (avoid leaking field upstream) - gemini/antigravity -> openai: derive deterministic tool_call id from name so functionCall/functionResponse pair correctly (fixes provider tool-pairing 400s) - add offline unit tests (finish-reason, usage, session-manager, ollama malformed args, const guard) - add real-creds integration tests (provider-cases + all-formats matrix: 6 inbound formats x 4 scenarios) Includes co-located provider registry refactor (pricing/capabilities/media providers) and sessionManager updates. Co-authored-by: Cursor <cursoragent@cursor.com>
36 lines
708 B
JavaScript
36 lines
708 B
JavaScript
export default {
|
|
id: "searchapi",
|
|
alias: "searchapi",
|
|
display: {
|
|
name: "SearchAPI",
|
|
icon: "search",
|
|
color: "#0EA5A4",
|
|
textIcon: "SA",
|
|
website: "https://www.searchapi.io",
|
|
notice: {
|
|
apiKeyUrl: "https://www.searchapi.io/dashboard"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
authType: "apikey",
|
|
serviceKinds: [
|
|
"webSearch"
|
|
],
|
|
searchConfig: {
|
|
baseUrl: "https://www.searchapi.io/api/v1/search",
|
|
method: "GET",
|
|
authType: "apikey",
|
|
authHeader: "api_key",
|
|
costPerQuery: 0.004,
|
|
freeMonthlyQuota: 100,
|
|
searchTypes: [
|
|
"web",
|
|
"news"
|
|
],
|
|
defaultMaxResults: 5,
|
|
maxMaxResults: 100,
|
|
timeoutMs: 10000,
|
|
cacheTTLMs: 300000
|
|
}
|
|
};
|