Skip to main content

Studio quickstart

In this quickstart, you will learn how to search for models and try out and call model and pipelines.

Models

Select a Model

Open the Discover tab and search for a model. Use the Function and Modality filters to narrow down your search.

Docusaurus themed imageDocusaurus themed image

Let's select Groq Llama 3 70B.

Try it out!

Write your input in the entry field and click Enter.

Docusaurus themed imageDocusaurus themed image

Deploy the Model

Copy and paste the code snippets from the API integration tab into your projects. 😊

Don't forget to install dependencies and add your Team API Key!
See the quickstarts for more information.

Docusaurus themed imageDocusaurus themed image
note

You can see the model IDs under the model names in the screenshots above.

from aixplain.factories import ModelFactory

model = ModelFactory.get("6626a3a8c8f1d089790cf5a2")
result = model.run(<INPUT_DATA>)
note

See Models for more information.

Pipelines

Build a Pipeline

Build & Save a pipeline in Design.

tip

Watch our Design Overview video to learn how to use Design to build your first pipeline (Translation & Speech Synthesis).

Docusaurus themed imageDocusaurus themed image
Translation & Speech Synthesis pipeline from Design Overview video

Try it out!

Write your input in the entry field and press Enter.

Docusaurus themed imageDocusaurus themed image
Translation & Speech Synthesis pipeline Try it out! page

Deploy the Pipeline

Copy and paste the code snippets from the API integration tab into your projects. 😊

Don't forget to install dependencies and add your Team API Key!
See the quickstarts for more information.

Docusaurus themed imageDocusaurus themed image
Translation & Speech Synthesis pipeline Try it out! page
info

In the future, you can publish your solutions to an aiXplain App Store (no code).

note

You can see the pipeline ID (65d73975015ea5c1e551facc) under the pipeline's name in the screenshot above.
The ID is also available in a pipeline's information page and URL.

from aixplain.factories import PipelineFactory

pipeline = PipelineFactory.get("65d73975015ea5c1e551facc")
result = pipeline.run("<INPUT_1_TEXT_DATA>")
note

See Pipelines for more information.