Learn about Gadget's built-in AI features such as the OpenAI connection, vector databases, and cosine similarity search, and use them to build a chatbot that generates custom movie scenes.
You can fork this Gadget project and try it out yourself.
Create a new Gadget app
Before we get started we need to create a new Gadget app. We can do this at gadget.new. When selecting an app template, make sure you select the Web app type.
Now that we have a new Gadget app, let's start building!
Step 1: Create a movie model
The first thing we need to do is store some movie quotes in our Gadget app. We're going to make use of Gadget's data models, which are similar to tables in a Postgres database, to store this information.
Start by creating a new model in Gadget:
Click the + button in the DATA MODELS section of the sidebar
Enter movie as the model's API identifier
Now add some fields to your model. Fields are similar to columns in a database table, and allow you to define what kind of data is stored in your model. For our movie model, we'll add the following fields:
Click + in the movie model's FIELDS section
Enter title as the field's API identifier
Click on the + Add Validations drop-down and select Required to make the title field Required
Adding a Required validation to title means that an error will be thrown if a movie is added without a title. Now let's add a field to store the movie's quotes:
Click + in the movie model's FIELDS section
Enter quote as the field's API identifier
Click on the + Add Validations drop-down and select Required to make the quote field Required
Now we have a place to store movie quotes! We also need a field used to store vector embeddings. Vector embeddings are a way of representing text as a vector of numbers. To learn more about vector embeddings, check out our docs on building AI apps.
Click + in the movie model's FIELDS section
Enter embedding as the field's API identifier
Select vector as the field's type
That is all that we need to store data for our app! Now we need a way to generate embeddings. Luckily, OpenAI has an API that we can use to pass in text and get back a vector embedding.
Step 2: Add the OpenAI connection
Gadget has built-in connections to popular APIs, including OpenAI. You can use these connections to interact with external services in your app.
Click on Settings in the sidebar
Click on Plugins
Select OpenAI from the list of plugins
Use the Gadget development keys so you can start using the OpenAI API without an API key
We need some test data for our app. We're going to use a global action to fetch an open data source hosted on Hugging Face. We will then use the OpenAI connection to generate embeddings for our movie quotes.
Click on Global actions in the sidebar
Click the + Add action button or + next to the ACTIONS section title to create a new global action
Name the action's API Identifier to ingestData
Our OpenAI connection is already set up for us using Gadget-managed credentials. To learn more about how to set up your own OpenAI connection, check out our OpenAI connection docs.
Free OpenAI credits to get you started
Teams in Gadget get free OpenAI credits to use for experimenting during development! Using Gadget-managed OpenAI credentials automatically
draws from this credit pool.
Enter the following code in the generated code file (replace the entire file):
35// use the internal API to bulk create movie records
36await api.internal.movie.bulkCreate(movies);
37}
38}
This code:
uses fetch to pull in a small sample dataset that stores movie quotes hosted on Hugging Face
loops through the returned data and creates a new movie record for each movie quotes
uses the OpenAI connection (connections.openai) to generate embeddings for each movie quote
uses your Gadget app's internal API to bulk create movie records with the generated embeddings
Now we can run our global action to ingest the data:
Click on the Run Action button to open your action in the API Playground
Run the action
The action will be run and a success message is returned once data has been added to the database.
We can also see the data in our Gadget database by:
Clicking on the movie model in the sidebar
Clicking on Data
You should see movie records, complete with title, quote, and embedding data!
Now that we have data in our database, we are ready to build the user-facing portion of our app.
Step 4: Use a global action to find similar movie quotes
Our app will allow users to enter a fake movie quote and find movie quotes that are similar to the entered text using a similarity search on the embeddings. We will use a global action to find the top 4 most similar movie quotes, and then present these movies to the user.
We can create a new global action:
Click on Global Actions in the sidebar
Click the + next to the ACTIONS section title to create a new global action
Name action's API Identifier to findSimilarMovies
Enter the following code in the generated code file (replace the entire file):
36// define custom params to pass values to your global action
37exportconst params ={
38quote:{type:"string"},
39};
Finding similar vectors with cosine similarity
This api.movie.findMany call from the above function is the key to finding similar movies:
api.movie.findMany({...}) in globalActions/findSimilarMovies.js
JavaScript
1// get the 4 most similar movies that match your quote, and return them to the frontend
2const movies =await api.movie.findMany({
3sort:{
4embedding:{
5cosineSimilarityTo: response.data[0].embedding,
6},
7},
8first:4,
9select:{
10id:true,
11title:true,
12},
13});
Gadget has built-in vector distance sorting which we use to get the most similar vectors to the user's entered text. We use the cosineSimilarityTo operator to find the cosine similarity between the user's entered text and the movie quotes in our database.
Step 5: Add a route to generate a scene
Now for the final backend development step: adding an HTTP route to our Gadget app that will be called by the frontend to generate a scene. We make use of Gadget's OpenAI connection to generate a scene using the user's entered text and a movie quote.
Why not use a global action?
We used a global action to ingest data and find similar movies, but we're using a route to generate a scene. You might be asking yourself why?
There are two main reasons:
Global actions do not support streaming responses, and we want to stream the text returned from OpenAI to the frontend
The openAIResponseStream helper we are using integrates seamlessly with HTTP routes
In general, we suggest you use global actions over HTTP routes whenever possible. But when streaming or integrating with external systems or packages, HTTP routes can be a better choice. To read more about when to use each, see the Actions guide.
Modify the routes/POST-chat.js HTTP route file in your Gadget app (replace the entire file):
11const prompt =`Here is a fake movie quote: "${request.body.quote}" and a movie selected by a user: "${request.body.movie}". Write a fake scene for that movie that makes use of the quote. Use a maximum of 150 words.`;
17{role:"system",content:`You are an expert, hilarious AI screenwriter tasked with generating funny, quirky movie scripts.`},
18{role:"user",content: prompt },
19],
20stream:true,
21});
22
23await reply.send(openAIResponseStream(stream));
24}
The OpenAI connection is used to call the chat completions endpoint, which generates a scene from the user's selected movie and entered quote.
Now we can call this route from our frontend to generate a scene!
Step 6: Build the frontend
Now that we have defined our global actions and HTTP route, we can add support to call them from the frontend.
Gadget's React frontends are built on top of Vite, and include support for email/password auth as well as Google Auth. Our frontend code lives in the frontend folder. We will only be making changes to a single frontend route, frontend/routes/signed-in.jsx, which is the route accessed when a user is signed in to our app.
Paste the following code into frontend/routes/signed-in.jsx:
The frontend has 3 components: the default export for the route, the MovieQuoteForm component, and the SceneGenerator component. These 3 components all make use of different @gadgetinc/react hooks that help us make requests and manage our form state. The hooks simplify the management of response and form state, and let us interact with responses and forms in a React-ful way through the returned data, fetching, and error objects.
the route's default export is responsible for calling the ingestData global action (if you haven't already done so!) using the useGlobalAction hook (more info on useGlobalAction)
the MovieQuoteForm component manages and submits the input form for the entered quote, and calls the findSimilarMovies global action using the useActionForm hook (more info on useActionForm) which then allows users to select a movie from the returned actionData
the SceneGenerator component makes a request to the /chat HTTP route using the useFetch hook (more info on useFetch) and displays a streamed response
Remove background-image
You can clean up the appearance of your project by removing the background-image from the .app CSS class set in frontend/App.css:
Search for and remove this line from the .app class in frontend/App.css
We are done building! Let's test out the AI screenwriter. Sign-up and sign-in to your app, enter a fake movie quote, select a recommended movie, and watch as the AI screenwriter generates a new scene!
The final step is deploying to production.
Step 7 (Optional): Deploy to Production
If you want to deploy a Production version of your app, you can do so in just a couple of clicks!
First, you need to use your own OpenAI API key in the OpenAI connection:
Click on the Plugins tab in the left sidebar
Click on the OpenAI connection
Edit the connection and use your API key for the Production environment
Now, deploy your app to Production:
Click on the Deploy button in the bottom right corner of the Gadget UI
Click Deploy Changes
That's it! Your app will be built, optimized, and deployed!
You can preview your Production app:
Click on the app name at the top of the left sidebar
Hover over Go to app and click Production
Alternatively, you can remove --development from the domain of the window you were using to preview your frontend changes while developing.
Next steps
Congrats! You've built a full-stack web app that makes use of generative AI and vector embeddings! 🎉
In this tutorial, we learned:
How to create and store vector fields in Gadget
How to stream chat responses from OpenAI to a Gadget frontend using Vercel's AI SDK
When to use global actions vs routes in Gadget
Questions?
If you have any questions, feel free to reach out to us on Discord to ask Gadget employees or the Gadget developer community!