Assistant examples ↗
noOriginal Documentation
Documentation Index#
Fetch the complete documentation index at: https://docs.pinecone.io/llms.txt Use this file to discover all available pages before exploring further.
export const Tag = ({text, icon}) => { return {icon && <img src={icon}`} />} {text} ; };
export const UtilityExampleCard = ({title, text, link}) => {
return {text}{title}
export const ExampleCard = ({title, text, link, children, arrow, vectors, namespaces}) => {
return {text}{title}
{children && {children}}
{arrow && <svg xmlns="http://www.w3.org/2000/svg" className="arrow" width="24" height="24" viewBox="0 0 24 24" fill="none">
<path d="M5.30739 20L4 18.6926L16.8249 5.8677H5.05837V4H20V18.9416H18.1323V7.1751L5.30739 20Z" fill="var(--text-secondary)" />
</svg>}
{(vectors || namespaces) &&
{vectors && <span>{vectors} vectors</span>}
{namespaces && <span>{namespaces} namespaces</span>}
}
</a>;
};
Link last verified
June 7, 2026.
View original ↗
Source: Pinecone Docs
Link last verified: 2026-02-26