Build an AI App in Airtable (without writing code!)🍿

Sdílet
Vložit
  • čas přidán 28. 08. 2024
  • In this video I show you how to take your No-Code game to the next level showing how to build a OpenAI Artificial Intelligence powered movie recommendation no-code app!
    In future videos planned for this series we dive deeper into AI and OpenAI / ChatGPT for no-coders, and how to use APIs for No-Coders, so stay tuned. 😎
    **Build Along With Me - Resources For This Tutorial Below**
    This is the OpenAI Completion Prompt used in the tutorial (if you are copying this, remember to show some love and click like on the video, thanks!):
    "I like these three films: Film 1 = {{1.movie1}} Film 2 = {{1.movie2}} Film 3 = {{1.movie3}}; Recommend to me the next perfect movie I should watch based on me liking these three films. For the movie you are recommending to me: create (and important to only return as the only response to this prompt) a valid JSON object containing data as per format and guidance notes next:{"title": “the title of the movie”, "overview": “short blurb giving an overview of the movie”, "reason": “Write a short paragraph describing your thinking as to why this movie is relevant to the 3 input movies. IMPORTANT GUIDANCE NOTE: Do not include inverted commas "" before or after the names of movies inside this paragraph"}"
    This is the webhook response redirect custom code snippet used inside of the Softr Studio to get the page to redirect after the user submits the form containing their 3 movies (the square brackets "[" & "]" [there are 6 in total in the script!] will need to be replaced with angle brackets throughout, CZcams does not allow angle brackets in a video description :
    [script]
    window.addEventListener('submit-form-success-form1', (e) =] {
    const response = e.detail.response || {};
    const data = response.data;
    if (data && data.redirect) {
    window.location.href = data.redirect;
    }
    });
    window.addEventListener('submit-form-success-form2', (e) =] {
    const response = e.detail.response || {};
    const data = response.data;
    if (data && data.redirect) {
    window.location.href = data.redirect;
    }
    });
    [/script]
    ************************
    No-Code Tools 🔧 used in this video:
    1. Softr.io - a visual developer for making web pages and web applications using pre-built blocks & templates:
    www.softr.io/p...
    2. Airtable.com - a database that looks and feels like a spreadsheet, but with all the power of a database plus automation tools and a deep network of integrations with other no-code tools: www.airtable.com
    3.Make.com - a No-Code logic and automation powerhouse; It lets no-coders interact with APIs without knowing they are even using an API! Connect all of your No-Code apps together, and create really amazing and automated workflows
    www.make.com/e...
    4.OpenAI.com - probably needs no introduction, the leading artificial intelligence model opened to coders and no-coders alike for implementing LLM Artificial Intelligence into their own application builds.
    (Note: the Make & Softr links above are affiliate links and I will be paid a referral fee if you sign up through my link; Thank you in advance for supporting me and my channel!)
    We are in the process of developing our No-Code community & all resources accompanying this tutorial can be found inside our community, including an embedded copy of the airtable base shown in this tutorial! The first (🏆) 400 members will have free access for life! Apply Here:
    www.no-code.ie
    As always, thanks for watching and talk to you soon!

Komentáře • 8

  • @hortensep9385
    @hortensep9385 Před rokem +1

    😂buddy, I had to stop the video and come back after 5 min..😅your generic music surprised me and made me laugh so much, thanks for bringing some hapiness in such a serious subject😂Apart from that your tutorial is awesome

    • @no-code
      @no-code  Před rokem

      😂glad you liked it!

  • @jacklyncorley3098
    @jacklyncorley3098 Před rokem

    I learn something I can apply to a project with every one of your videos. Thanks for this one!

  • @rubyjoy8328
    @rubyjoy8328 Před rokem

    This is amazing, you just got a subscriber. Thank you

    • @rubyjoy8328
      @rubyjoy8328 Před rokem

      Question: How do you limit users from blowing your openai token account. Is there a way you can stop them from generating more recommendations

  • @user-zw1uo2wo3t
    @user-zw1uo2wo3t Před rokem

    I'd like to ask: I got an error with the first Parse JSON: Source is not valid JSON. Output from Open AI is: Choices: text {"title": "The Firm", "overview": "Young lawyer. The model I have is text-davinci-003.

    • @rubyjoy8328
      @rubyjoy8328 Před rokem

      Same here, I keep getting 'Source is not valid JSON' and I believe I have done it like the video