Manage Models

Models are at the core of the platform. GenAI Studio is shipped with a series of foundational base models that you can use to create your own models. Not every base model is the same; we encourage you to compare them to find the best one for your use case. (That’s actually part of the fun!)

Model Creation Journey

Models are used at several points in the model creation journey. At the beginning, you can load a base model into the playground to test it. Then, you can create a snapshot of the model and fine-tune it. Finally, you can export the model to use it in your application.

graph LR;
    A(Create Project) --> B(Import Data);
    B --> C(Snapshot Model);
    C --> D(Fine-Tune Model);
    D --> E(Export Model);
    style A fill:#fff,stroke:#333,stroke-width:2px;
    style B fill:#fff,stroke:#333,stroke-width:2px;
    style C fill:#7FF9E2,stroke:#333,stroke-width:4px;
    style D fill:#7FF9E2,stroke:#333,stroke-width:4px;
    style E fill:#7FF9E2,stroke:#333,stroke-width:4px;