Welcome to Sieve!
The fastest way to build AI features.
What is Sieve?
Sieve is a platform built to help discover, design, and run AI features at scale. AI development is moving away from being predominantly about training & finetuning, and more towards how people combine models together to make specific use cases work. Our platform is the best development experience built around this growing trend.
Some features include:
- Pre-built, production-ready apps and models you can use in a single click or API call
- Build complex apps that use many models in a few lines of code
- Instant no-code interfaces for every app on Sieve, with zero extra configuration
- Reliable, horizontally scaling infrastructure based on traffic
- Powerful distributed primitives like queues and async jobs to parallelize data processing
Getting Started
Every account comes with $20 of credit to get you started:
- Login with your API key
Building a simple AI translation app
Let’s build a simple translation function on Sieve. We’ll take in an input file (video or audio) + the target language and return the translated transcript.
To start off, let's make a new directory and file
And copy the following code into simple_translation/main.py
:
Deploy to Sieve
Your build should only take a few seconds, after which you’ll see a link to your newly deployed function on the Sieve dashboard.
Run a job
Navigate to your function on the Sieve dashboard and upload a sample file to test out your app.
You can also call your function via API call or the Python client.
<your-org-name>
with your org name and <your-api-key>
with your API key.What just happened?
That was easy! We just built a simple AI translation app in a few lines of code. Let’s walk through it.
At its core, we used 2 Sieve functions to build this app:
- sieve/speech_transcriber: Transcription model, backed by OpenAI’s Whisper model.
- sieve/seamless_text2text: Translation model, developed by Meta.
Sieve makes it easy to use any public Sieve functions in the cloud, synchronously or asynchronously.
We wrote all of our logic for translating a file in a single function and defined a custom Sieve function with the @sieve.function
decorator.
Deploying our function with sieve deploy
lets us run this function via API and lets us visualize our inputs & outputs via the Sieve dashboard!
What’s next?
All you need to get started with Sieve is an account. From there, you can decide what you’d like to do next.
Run AI apps with API
Run a production ready app on Sieve
Complex Applications
Build complex apps like video dubbing
Custom Functions
Deploy your own functions
Support
If you need any assistance or have any questions, feel free to join our Discord community. Looking forward to see what you build!
Was this page helpful?