# Custom trained GPT in Glide

**URL:** https://community.glideapps.com/t/custom-trained-gpt-in-glide/68931
**Category:** Project Showcase
**Tags:** ai, chatgpt, tutorial
**Created:** [December 21, 2023, 6:30pm UTC](https://community.glideapps.com/t/custom-trained-gpt-in-glide/68931 "2023-12-21T18:30:22Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Sigurd\_Bauge](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/sigurd_bauge/32/66871_2.png) [@Sigurd\_Bauge](https://community.glideapps.com/u/Sigurd_Bauge)
#### Post date: [December 21, 2023, 6:30pm UTC](https://community.glideapps.com/t/custom-trained-gpt-in-glide/68931/1 "2023-12-21T18:30:22Z")

</div>

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/](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.

---

<div class="post-metadata">

### Author: ![AyS\_0908](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/ays_0908/32/27349_2.png) [@AyS\_0908](https://community.glideapps.com/u/AyS_0908)
#### Post date: [December 22, 2023, 8:35am UTC](https://community.glideapps.com/t/custom-trained-gpt-in-glide/68931/2 "2023-12-22T08:35:44Z")

</div>

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?

---

<div class="post-metadata">

### Author: ![kmartsnipz](https://avatars.discourse-cdn.com/v4/letter/k/a6a055/32.png) [@kmartsnipz](https://community.glideapps.com/u/kmartsnipz)
#### Post date: [May 3, 2024, 6:52pm UTC](https://community.glideapps.com/t/custom-trained-gpt-in-glide/68931/3 "2024-05-03T18:52:56Z")

</div>

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