Custom trained GPT in Glide

I just stumbled upon a tool called Pickaxe. This tool allows you to embed AI on any site, including Glide.

To implement GPT into your Glide app just follow these steps :

  1. Create a GPT on https://beta.pickaxeproject.com/

  2. Copy the embed code from pickaxe and paste in into e template column in glide using the following HTML code :

!DOCTYPE html
html
body
EMBED THE CODE HERE
/body
/html

Remember to use <> in the HTML

  1. Create a ne javascript code column and paste the following code :
    return data:text/html;charset=utf-8,${encodeURIComponent(p1)};

p1 = the HTML column you just created

  1. Add an embed component in your app and choose the javascript code as the source.
5 Likes

Hi thanks.

I was just looking at it. Do you already have an example of the UI/UX result on a Glide app? How does it look?

1 Like

I’ve been trying to figure this out myself, thank you for the post!