An open API service indexing awesome lists of open source software.

https://github.com/gptscript-ai/answers-from-the-internet

GPTScript tool that answers a question by searching Google and looking at web pages
https://github.com/gptscript-ai/answers-from-the-internet

Last synced: 12 months ago
JSON representation

GPTScript tool that answers a question by searching Google and looking at web pages

Awesome Lists containing this project

README

          

# Answers from the Internet

This tool answers a question provided to it by using a browser to search Google.

## Example

```bash
gptscript github.com/gptscript-ai/answers-from-the-internet '{"question":"Who was Oliver Cromwell?"}'
```

## How it Works

```mermaid
flowchart TD
A(Begin execution) --> B(Parse input)
B --> C(Generate Google query with gpt-3.5-turbo)
B --> D(Set up browser contexts)
C --> E(Search Google and get page contents immediately as links are found)
D --> E
E --> F(Give all contents to gpt-4o to determine the answer)
```