Connect MyGPTs with your data using text blaze - Send Parameter in Urlload

If I could do /myshortcut?location="toronto" I can use textblaze to hit any api I want and then embed the data directly.

A couple of examples, my company works with hotels and we often have to send them data unique to them. We'll make graphs for them in a myGPT:

  1. A MyGPT makes our charts but I always have to go fetch the data for it. If I could do /fetchdata?property="hilton-new-york" and it will return a text version of my table. The LLM can immediately work with that.

Enhancing MyGPT's with text blaze would basically let you build anything you wanted in a way where you're interacting in the ChatGPT window only but you can source any of your data from anywhere

And all you'd need to do it is let urlload send parameters somehow (would be awesome if it could pull up the menu too)

Yes, you can dynamically pass parameters to a GET request using our urlload command. Please refer to the illustration below and let me know if you need further assistance.

Count: {formtext: name=count; default=5}

{urlload: http://www.randomnumberapi.com/api/v1.0/random?min=100&max=1000&count={=urlencode(count)}; done=(res) -> ["data": catch(fromJSON(res), "No data available")]}

Random numbers: {=data}