惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
G
Google Developers Blog
A
About on SuperTechFans
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
博客园 - 聂微东
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
V
Visual Studio Blog
美团技术团队
The Cloudflare Blog
量子位
T
The Blog of Author Tim Ferriss
罗磊的独立博客
V
V2EX
S
SegmentFault 最新的问题
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
博客园 - Franky

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Amazon OpenSearch Serverless is now available in the Verc...
Michael TothHedi ZandiProduct Manager · 2026-05-28 · via Vercel News

Amazon OpenSearch Serverless is now available in the Vercel Marketplace, with guided setup and automatic project configuration built into the Vercel dashboard.

Link to headingBuilt for agentic infrastructure

By bringing Amazon OpenSearch Serverless into the Vercel Marketplace, teams benefit from a unified workflow:

  • In-dashboard provisioning: Spin up OpenSearch collections directly from the Vercel dashboard

  • Automatic configuration: Environment variables are automatically injected into your projects on provisioning

  • Unified management: View and manage search resources alongside the rest of your application infrastructure in the Marketplace resource view, with quick links to AWS for deeper configuration

import { createOpenSearch } from '@vercel/aws';

const os = createOpenSearch();

An OpenSearch client authenticated through Vercel OIDC, with no static AWS keys.

import { opensearch } from "@/lib/opensearch";

import { embed, generateText } from "ai";

export async function POST(req: Request) {

const { question } = await req.json();

// Turn the question into a vector

const { embedding } = await embed({

model: "openai/text-embedding-3-small",

value: question,

});

// Retrieve the 5 most semantically similar docs

const { body } = await opensearch.search({

index: "docs",

body: {

size: 5,

query: { knn: { embedding: { vector: embedding, k: 5 } } },

},

});

const context = body.hits.hits

.map((h: any) => h._source.content)

.join("\n\n");

// Answer grounded in the retrieved context

const { text } = await generateText({

model: "anthropic/claude-sonnet-4-5",

prompt: `Answer using only this context:\n\n${context}\n\nQuestion: ${question}`,

});

return Response.json({ answer: text });

}

A RAG route that embeds the question, retrieves the top-5 nearest documents from OpenSearch, and answers grounded in them.

This integration is powered by the next generation of Amazon OpenSearch Serverless APIs, with Vercel participating as a key design partner alongside AWS during development.

  • Unified support for vector, lexical, hybrid, and agentic search in a single collection

  • Autoscales up to 20× faster, built for the bursty, unpredictable load patterns of agentic workloads

  • Scale to zero with no idle costs

  • Up to 60% cost savings by paying for actual usage instead of peak capacity

Link to headingGet started

To help you get started, you can create a new AWS Account directly through Vercel and receive $100 USD in credits to try Amazon OpenSearch Serverless. If you already have an active AWS account, you can link it instantly, manage your plan, and view usage details right from your Vercel dashboard.

Ready to build? Install Amazon OpenSearch from the Vercel Marketplace or deploy a starter template to see the integration in action.