Skip to content

Commit

Permalink
Merge pull request #60 from DataBassGit/dev
Browse files Browse the repository at this point in the history
Dev Merge - Alpha Let's GO!
  • Loading branch information
DataBassGit authored Jul 30, 2023
2 parents 9472886 + 39e0ebc commit 4820736
Show file tree
Hide file tree
Showing 53 changed files with 17,578 additions and 1,694 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@ src/agentforge/persona/chatbot.json

src/agentforge/salience.py

tests/DB/
Examples/DB/
Examples/Architectures/Logs/log.txt

Examples/Architectures/Logs/
/Examples/Architectures/Logs/
File renamed without changes.
8 changes: 8 additions & 0 deletions Examples/Architectures/.agentforge/actions.json
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"]
}
}
Loading

0 comments on commit 4820736

Please sign in to comment.