Scale GenAI Platform (Scale GP) documentation

Welcome to the Scale GenAI Platform (Scale GP) docs. You’ll find guides and documentation to help you start working with our UI and APIs as quickly as possible, as well as support if you get stuck. Let’s jump right in!

Let’s get started. What can we help you with?

Overview

Generative AI applications are essential to the modern enterprise. However, building these applications can be challenging and expensive, especially when they need to conform to enterprise security and scalability standards. The Scale GenAI Platform provides the full-stack capabilities enterprises need to rapidly develop and deploy Generative AI applications for custom use cases. These capabilities include loading custom data sources, indexing data into vector stores, running inference, and executing agents that can carry out intricate tasks with efficiency and precision.


Bringing GenAI into Production

Our intuitive UI makes it easy to build, test and deploy use cases across your organization.


Python
import requests

url = "https://api.egp.scale.com/v3/knowledge-bases"

payload = {
    "embedding_config": {
        "type": "base",
        "embedding_model": "openai/text-embedding-3-large"
    },
    "knowledge_base_name": "myknowledge_base"
}
headers = {
    "accept": "application/json",
    "content-type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)

Full-Stack

Scale GenAI Platform includes an API and SDK to simplify and accelerate the process of building, testing and deploying GenAI use cases to production.