-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
agents: update docs with slight prompt adjustment (#391)
Co-authored-by: Douglas Reid <[email protected]> Co-authored-by: Ted Benson <[email protected]>
- Loading branch information
1 parent
ebf1dd4
commit 77aac6d
Showing
21 changed files
with
109 additions
and
27 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
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
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
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
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
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
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 |
---|---|---|
@@ -1 +1,9 @@ | ||
"""Tool for generating images.""" | ||
from .assembly_speech_to_text_tool import AssemblySpeechToTextTool | ||
from .fetch_audio_urls_from_rss_tool import FetchAudioUrlsFromRssTool | ||
from .whisper_speech_to_text_tool import WhisperSpeechToTextTool | ||
|
||
__all__ = [ | ||
"AssemblySpeechToTextTool", | ||
"FetchAudioUrlsFromRssTool", | ||
"WhisperSpeechToTextTool", | ||
] |
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
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,7 @@ | ||
from .sentiment_analysis_tool import SentimentAnalysisTool | ||
from .zero_shot_classifier_tool import ZeroShotClassifierTool | ||
|
||
__all__ = [ | ||
"SentimentAnalysisTool", | ||
"ZeroShotClassifierTool", | ||
] |
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,3 @@ | ||
from .knock_knock_tool import KnockKnockTool | ||
|
||
__all__ = ["KnockKnockTool"] |
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
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,9 @@ | ||
from .dalle import DalleTool | ||
from .google_image_search import GoogleImageSearchTool | ||
from .stable_diffusion import StableDiffusionTool | ||
|
||
__all__ = [ | ||
"DalleTool", | ||
"GoogleImageSearchTool", | ||
"StableDiffusionTool", | ||
] |
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
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
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
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,7 @@ | ||
from .prompt_database_question_answerer import PromptDatabaseQATool | ||
from .vector_search_qa_tool import VectorSearchQATool | ||
|
||
__all__ = [ | ||
"PromptDatabaseQATool", | ||
"VectorSearchQATool", | ||
] |
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,3 @@ | ||
from .search import SearchTool | ||
|
||
__all__ = ["SearchTool"] |
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,3 @@ | ||
from .generate_speech import GenerateSpeechTool | ||
|
||
__all__ = ["GenerateSpeechTool"] |
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,13 @@ | ||
from .image_prompt_generator_tool import ImagePromptGeneratorTool | ||
from .personality_tool import PersonalityTool | ||
from .summarize_text_with_prompt_tool import SummarizeTextWithPromptTool | ||
from .text_rewrite_tool import TextRewritingTool | ||
from .text_translation_tool import TextTranslationTool | ||
|
||
__all__ = [ | ||
"ImagePromptGeneratorTool", | ||
"PersonalityTool", | ||
"SummarizeTextWithPromptTool", | ||
"TextRewritingTool", | ||
"TextTranslationTool", | ||
] |
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
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