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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
小众软件
小众软件
I
InfoQ
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
月光博客
月光博客
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
V
Visual Studio Blog
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
P
Proofpoint News Feed
Apple Machine Learning Research
Apple Machine Learning Research

Pinecone

Pinecone Assistant: A Managed Knowledge Layer for Production AI Applications Multi-domain RAG in n8n: why one knowledge base is not enough Allspice Transforms the Culinary Experience with Semantic Search Powered by Pinecone | Pinecone Building RAG workflows in n8n: choosing the right Pinecone node Knowledge needs a meta-knowledge layer Garbage Day: How Pinecone Safely Deletes Billions of Objects at Scale When "Performance" Means Two Different Things Pinecone BYOC: Pinecone in your AWS, GCP, or Azure account, no vendor access True, Relevant, and Wrong: The Applicability Problem in RAG Use the Pinecone Plugin for Claude Code to develop AI Applications Faster Millions at Stake: How Melange's High-Recall Retrieval Prevents Litigation Collapse Powering High-stakes Patent Search at Scale: How Melange Built a Reliable AI System on Pinecone | Pinecone Pinecone Assistant Node in n8n: Turn Any Data Source Into Knowledge RAG with Access Control Pinecone Dedicated Read Nodes are now in Public Preview Inside Pinecone: Slab Architecture New Bulk Data Operations: Update, Delete, and Fetch by Metadata The Hidden Cost of Building: Lessons from Aquant Simplifying Vector Embeddings with Pinecone Integrated Inference Capabilities Pinecone joins Microsoft Marketplace as a Launch Partner GTM Engineering: Clay + Pinecone for AI-powered Sales Outbound Build an AI knowledge assistant with Google Docs and Pinecone Moving Pinecone forward with Ash Ashutosh as CEO and Edo spearheading our growing AI ambitions as Chief Scientist Pinecone Founder Edo Liberty to Spearhead Pinecone’s Growing AI Ambitions; Appoints Ash Ashutosh as CEO to Expand Vector Database Market Leadership Fast, Accurate Retrieval for Creators at Scale: Delphi’s Path Toward a Million Conversational Agents with Pinecone | Pinecone Announcing Pinecone Pioneers: A Program for Builders, Organizers, and Community Leaders What is Context Engineering? Chunking Strategies for LLM Applications Beyond the hype: Why RAG remains essential for modern AI Obviant Makes 30% More Accurate Defense Acquisition Recommendations Combining Sparse and Dense Retrieval with Pinecone | Pinecone
Introducing Pinecone Assistant in Beta
Nathan Cordeiro, Roy Miara, Jack Pertschuk · 2024-06-25 · via Pinecone

Update: Pinecone Assistant is now in public preview. Learn more.

Today we’re launching Pinecone Assistant in beta. Pinecone Assistant is an API service for answering complex questions about your proprietary data, accurately and securely, within your applications.

With Pinecone Assistant you get:

  • Simplicity: Just add your files and start building your killer AI app using the API.
  • High-quality results: Relevant answers grounded in your data, with references.
  • Full control over your data: Your uploaded files help generate useful answers without training the model, and you can easily and permanently remove data.

Prototype and ship AI assistants in minutes

Developers still struggle to build AI assistants that can accurately answer questions about private data. Publicly available models are unaware of this data, and providing it can pose security concerns. Most teams also lack the time or deep AI expertise to build accurate and secure knowledge systems using Retrieval Augmented Generation (RAG).

Pinecone Assistant gives you a better way: Just upload your PDF or text files (support for other file types coming soon) and start asking questions. Prototype quickly with the drag-and-drop upload and chat interface, then add it to your applications in a matter of minutes with the chat-completion-compatible API.

Easily create an Assistant inside the console.

Receive relevant answers grounded in your data, with references.

pc = Pinecone(api_key='<<PINECONE_API_KEY>>')

# Create an assistant
finance_assistant = pc.assistant.create_assistant(assistant_name="Finley")

# Upload information to your assistant
finance_assistant.upload_file("./10q-reports.pdf")

# Once the upload succeeded, ask the assistant a question
msg = Message(content="What share repurchases has NVIDIA done recently?")
resp = finance_assistant.chat_completions(messages=[msg])

All the infrastructure, operations, and optimization of a complex Q&A system are handled for you. That includes chunking, embedding, file storage, query planning, vector search, model orchestration, reranking, and much more. Pinecone Assistant leverages our enterprise-grade vector database and extends frontier models — starting with GPT-4o from Azure OpenAI Service with other models coming soon.

Provide more accurate answers with less effort

AI assistants must give accurate and reliable answers during prototyping to demonstrate value, and then in production to provide a great customer experience and minimize liabilities. That’s why we built Pinecone Assistant with a focus on delivering the highest-quality and dependable answers. Today, it already performs better than other assistant APIs for text-heavy technical data such as financial and legal documents.

Combined answer factual accuracy score (F1), reflecting the ability to locate relevant information in private data and accurately grounding the model's responses based on that information.

Answer quality will get even better over time across more domains, and will eventually support complex queries over multi-modal data.

Learn how we measure and benchmark answer quality by assistants.

Protect and control your data

Data sovereignty, privacy, and security is critical for any business shipping AI assistants. That’s why it’s our top priority as we build the Pinecone Assistant:

  • The data you upload is encrypted and isolated.
  • Your data is used as context and reference for answers in real-time; it is not used to permanently fine-tune or train the underlying language model. In essence you control what the assistant knows or forgets.
  • Even for the beta version, Pinecone Assistant is powered by enterprise-grade components that pass strict compliance requirements. Learn more about the security of Pinecone Database and Azure OpenAI Service.

We’re developing additional privacy and security features for Pinecone Assistant, and we welcome feedback from customers in regulated industries and enterprise environments.

Beta period starts today, with more to come

We’re releasing Pinecone Assistant in beta for developers to try and share their feedback. The starting limits are 1GB of file storage and 100 queries per month, but they may change during the beta period. You can expect some rough edges but also rapid improvement based on your feedback.