WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions content/tools-registry/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,4 +234,38 @@ console.log(text);`,
websiteUrl: 'https://superagent.sh',
npmUrl: 'https://www.npmjs.com/package/@superagent-ai/ai-sdk',
},
{
slug: 'valyu',
name: 'Valyu',
description:
'Valyu provides powerful search tools for AI agents. Web search for real-time information, plus specialized domain-specific searchtools: financeSearch (stock prices, earnings, income statements, cash flows, etc), paperSearch (full-text PubMed, arXiv, bioRxiv, medRxiv), bioSearch (clinical trials, FDA drug labels, PubMed, medRxiv, bioRxiv), patentSearch (USPTO patents), secSearch (10-k/10-Q/8-k), economicsSearch (BLS, FRED, World Bank data), and companyResearch (comprehensive company research reports).',
packageName: '@valyu/ai-sdk',
tags: ['search', 'web', 'domain-search'],
apiKeyEnvName: 'VALYU_API_KEY',
installCommand: {
pnpm: 'pnpm install @valyu/ai-sdk',
npm: 'npm install @valyu/ai-sdk',
yarn: 'yarn add @valyu/ai-sdk',
bun: 'bun add @valyu/ai-sdk',
},
codeExample: `import { generateText, gateway, stepCountIs } from 'ai';
import { webSearch } from '@valyu/ai-sdk';
// Available specialised search tools: financeSearch, paperSearch,
// bioSearch, patentSearch, secSearch, economicsSearch, companyResearch

const { text } = await generateText({
model: gateway('google/gemini-3-pro-preview'),
prompt: 'Latest data center projects for AI inference?',
tools: {
webSearch: webSearch(),
},
stopWhen: stepCountIs(3),
});

console.log(text);`,
docsUrl: 'https://docs.valyu.ai/integrations/vercel-ai-sdk',
apiKeyUrl: 'https://platform.valyu.ai',
websiteUrl: 'https://valyu.ai',
npmUrl: 'https://www.npmjs.com/package/@valyu/ai-sdk',
},
];
Loading