Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 573 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 573 Bytes

Answers from the Internet

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

Example

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

How it Works

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)
Loading