I already have GPT-4 access via API, how to add internet access to this?
Does chatGPT plus access provides API with internet as well ?
Plugins and Browsing models are not available through the API, only ChatGPT. You’ll have to build that functionality yourself (or use a project like LangChain that has some of that stuff built out).
ChatGPT Plus is only for chat.openai.com, has no affect on the API.
2 Likes
Ok thanks for update and also interesting to know that we can build the browsing feature on top of existing gpt4 API , any pointers or docs on how I can go doing that ?
Thanks and much appreciated.
https://python.langchain.com/en/latest/modules/agents/tools/examples/google_search.html
Boils down to using regular old code to do the search/scraping and add it to your GPT prompt
1 Like