Customers are turning to SambaNova to quickly deploy state-of-the-art AI capabilities to gain competitive advantage. Our purpose-built enterprise-scale AI platform is the technology backbone for the next generation of AI computing. We power the foundation models that unlock the valuable business insights trapped in data.Designed for AI, the SambaNova RDU was built with a revolutionary dataflow architecture. This design makes the RDU significantly more efficient for these workloads than GPUs as it eliminates redundant calls to memory, which are an inherent limitation of how GPUs function. This built-in efficiency is one of the features that makes the RDU capable of much higher performance than GPUs in a fraction of the footprint.On top of our architecture We have developed some platforms that allow companies and developers to get full advantage of the RDU processors and open source models.
SambaNova’s SambaStudio is a rich, GUI-based platform that provides the functionality to train, deploy, and manage models in SambaNova DataScale systems.
from langchain_sambanova import ChatSambaNovaCloudllm = ChatSambaNovaCloud(model="Meta-Llama-3.3-70B-Instruct", temperature=0.7)llm.invoke("Tell me a joke about artificial intelligence.")
For a more detailed walkthrough of the ChatSambaNovaCloud component, see this notebook
Copy
Ask AI
from langchain_sambanova import ChatSambaStudiollm = ChatSambaStudio(model="Meta-Llama-3.3-70B-Instruct", temperature=0.7)llm.invoke("Tell me a joke about artificial intelligence.")
For a more detailed walkthrough of the ChatSambaStudio component, see this notebook
from langchain_sambanova import SambaNovaCloudEmbeddingsembeddings = SambaNovaCloudEmbeddings(model="E5-Mistral-7B-Instruct")embeddings.embed_query("What is the meaning of life?")
For a more detailed walkthrough of the SambaNovaCloudEmbeddings component, see this notebook
Copy
Ask AI
from langchain_sambanova import SambaStudioEmbeddingsembeddings = SambaStudioEmbeddings(model="e5-mistral-7b-instruct")embeddings.embed_query("What is the meaning of life?")