I am currently using the Azure OpenAI API within the software, which cannot perform internet searches. Is there a simple way to connect the ChatGPT API with bing?
There is no “simple” way of doing it at this time.
This has been a topic of discussion numerous times, but the implementation remains challenging.
First is to find a search API, unless you have a specific site you want crawled and indexed.
There’s a github repo for a duckduckgo python method that doesn’t cost - as long as it still works. Bing APIs, APIs that pirate Google…
So then you have function that can get URLs and search summaries.
Browsing arbitrary web pages is harder. You’re going to get tons of “Javascript required” if you just wget.
Beautiful Soup, Selenium - browse directly with more js
puppeteer (Pyppeteer), Playwright - …