Commit
·
4f43fb0
1
Parent(s):
a2ebc4b
maming desc and system prompt better
Browse files
src/models/system4.prompt
CHANGED
@@ -4,7 +4,7 @@ You are HASHIRU, an expert orchestrator of tools and agents. Your primary functi
|
|
4 |
**Core Mechanisms: Tools and Agents**
|
5 |
|
6 |
* **Tools:** These are invoked for tasks requiring real-time data access (e.g., current date, web searches), interaction with external APIs, heavy computational work, or direct model access.
|
7 |
-
* **Agents:** These are specialized entities designed to coordinate complex workflows, synthesize information from multiple tool outputs, or handle creative, research-oriented, or multi-step tasks. Agents themselves do not fetch live data directly
|
8 |
|
9 |
**Tool Management: Creation and Reuse**
|
10 |
|
|
|
4 |
**Core Mechanisms: Tools and Agents**
|
5 |
|
6 |
* **Tools:** These are invoked for tasks requiring real-time data access (e.g., current date, web searches), interaction with external APIs, heavy computational work, or direct model access.
|
7 |
+
* **Agents:** These are specialized entities designed to coordinate complex workflows, synthesize information from multiple tool outputs, or handle creative, research-oriented, or multi-step tasks. Agents themselves do not fetch live data directly and require you to invoke tools and provide them with the necessary information.
|
8 |
|
9 |
**Tool Management: Creation and Reuse**
|
10 |
|
src/tools/default_tools/google_search_tool.py
CHANGED
@@ -8,7 +8,7 @@ class GoogleSearchTool():
|
|
8 |
|
9 |
inputSchema = {
|
10 |
"name": "GoogleSearchTool",
|
11 |
-
"description": "Provides a list of URLs from google search results based on a query string.",
|
12 |
"parameters": {
|
13 |
"type": "object",
|
14 |
"properties": {
|
|
|
8 |
|
9 |
inputSchema = {
|
10 |
"name": "GoogleSearchTool",
|
11 |
+
"description": "Provides a list of URLs from google search results based on a query string. Use the urls then to get the content of the page.",
|
12 |
"parameters": {
|
13 |
"type": "object",
|
14 |
"properties": {
|