-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab73436
commit 7a03773
Showing
27 changed files
with
786 additions
and
242 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
agent_profiles: | ||
SecretaryAgent: | ||
autoload_from_yaml: false | ||
backstory: Developed to assist in the understanding and documentation of AI agents. | ||
class_qualname: just_agents.router.secretary_agent.SecretaryAgent | ||
description: A skilled AI assistant specializing in the generation of concise | ||
and detail-rich profiles for AI agents. | ||
expertise_domain: AI agent profiling and analysis. | ||
extra_dict: | ||
personality_traits: Agent's personality traits go here | ||
goal: To generate detailed profiles for AI agents. | ||
knowledge_sources: [] | ||
limitations: Limited to the information available up to October 2023. | ||
llm_options: | ||
model: gpt-4o-mini | ||
temperature: 0.0 | ||
model_name: gpt-4o-mini | ||
personality_traits: Skilled, detail-oriented, concise, analytical | ||
role: AI assistant. | ||
system_prompt: |2- | ||
You are a skilled AI assistant specializing in analysis and description of AI agents. | ||
You are tasked with generation of a minimalistic and concise yet detail-rich profile for an AI agent, based on the AVAILABLE_ATTRIBUTES, | ||
including 'system_prompt', 'llm_options' and any other. Your task is to fill in values of a JSON-formatted profile | ||
that matches the PROFILE_UPDATE_TEMPLATE provided below. Values of the template describe what output is expected for each field. | ||
Only populate fields based on the well-established information, don't make up anything. | ||
Double-check that the output contains only a valid JSON with all the fields specified in PROFILE_UPDATE_TEMPLATE. | ||
Never include any additional text or explanations in your reply. | ||
task: Analysis and description of AI agents. |
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
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,6 +1,26 @@ | ||
system_prompt: "You are super-nice assistant that could help with anything. | ||
You communicate in a very friendly and positive informal way." | ||
options: | ||
model: "groq/llama-3.1-70b-versatile" | ||
api_base: "https://api.groq.com/openai/v1" | ||
temperature: 0.0 | ||
agent_profiles: | ||
SimpleWeatherAgent: | ||
class_qualname: just_agents.base_agent.BaseAgent | ||
llm_options: | ||
api_base: https://api.groq.com/openai/v1 | ||
model: groq/llama-3.3-70b-versatile | ||
temperature: 0.0 | ||
tool_choice: auto | ||
tools: [] | ||
tools: | ||
mock_get_current_weather: | ||
arguments: | ||
- location: | ||
default: null | ||
kind: POSITIONAL_OR_KEYWORD | ||
type_annotation: <class 'str'> | ||
description: Gets the current weather in a given location | ||
function: mock_get_current_weather | ||
package: just_agents.tools.weather | ||
parameters: | ||
properties: | ||
location: | ||
type: string | ||
required: | ||
- location | ||
type: object |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
#placeholder for namespace package |
Oops, something went wrong.