#Is there any way to automate a chatgpt prompt that relies on browse with bing?

1 messages · Page 1 of 1 (latest)

faint mantle
#

Would I need to use langchain for this, or is there a way to do this natively in the api?

steep dagger
#

You can’t browse in/with the api.

What you can do is write an application that browses (python beautiful soup etc), then send scrapes to api.

uneven parcel
#

Yup @faint mantle like @steep dagger said, you would use something like langchain or llama-index to automate this programatically

faint mantle
#

Thanks everyone. Browse with Bing just seems to work better than other things

steep dagger
#

They of course are browsing by some optimized search string. And of course it’s not just browsing, it’s also reasoning over the results found.
You can achieve 1:1 identical (or better) results, but it’s a considerable amount of custom code, and you’ll need something like a google search api key or so, to get efficient searches done.

faint mantle
steep dagger
#

I notice that API ≠ App
The api is much more "jumpy" (possibly related to the control of temp, top p, and so on)

#

So if the issue you encounter is related to the ai, then that could be a point to observe
If however the issue you see is related to the browsing itself, then it would be in your code (unless of course the actual browse prompt is the issue, in which case see above)