-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from DataBassGit/dev
Dev Merge - Alpha Let's GO!
- Loading branch information
Showing
53 changed files
with
17,578 additions
and
1,694 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"WebSearch": { | ||
"Description": "WebSearch: This action performs a Google search from a query, scrapes the text from one of the returned URLs, and then breaks the scraped text into manageable chunks.", | ||
"Example": "search_results = google.google_search(query, number_result); url = search_results[2][0]; scrapped = web_scrape.get_plain_text(url); chunks = intelligent_chunk(scrapped, chunk_size=0)", | ||
"Instruction": "First, use the 'GoogleSearch' tool to perform a Google search and retrieve a list of search results. Choose a URL from the search results, then use the 'WebScrape' tool to scrape the text from that URL.", | ||
"Tools": ["Google_Search", "Web_Scrape"] | ||
} | ||
} |
Oops, something went wrong.