Created
April 2, 2025 12:32
-
-
Save igor9silva/107945096a8561ca770591814f29e869 to your computer and use it in GitHub Desktop.
toolChoice: "required"
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
import { createDeepInfra } from "@ai-sdk/deepinfra"; | |
import { createTogetherAI } from "@ai-sdk/togetherai"; | |
import { generateText, tool } from "ai"; | |
import { z } from "zod"; | |
const togetherai = createTogetherAI({ | |
apiKey: "???", | |
}); | |
const deepinfra = createDeepInfra({ | |
apiKey: "???", | |
}); | |
async function main() { | |
// | |
const result = await generateText({ | |
model: togetherai("meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo"), | |
// model: deepinfra("meta-llama/Meta-Llama-3.1-405B-Instruct"), | |
temperature: 1, | |
tools: { | |
askForClarification: tool({ | |
description: | |
"Before executing a task, make sure you are at least 80% sure of the user intention for the task. Use this tool to ask for user clarification.", | |
parameters: z.object({ | |
message: z | |
.string() | |
.describe("The message to send to the user in MDX format."), | |
}), | |
}), | |
discard: tool({ | |
description: | |
"Discard the current task by marking it as done without learning.", | |
parameters: z.object({ | |
reasoning: z | |
.string() | |
.optional() | |
.describe("A short explanation for discarding the task."), | |
}), | |
}), | |
updateInstructions: tool({ | |
description: "Update the task instructions.", | |
parameters: z.object({ | |
title: z | |
.string() | |
.max(60) | |
.optional() | |
.describe("A short title for the task. **Max 60 characters**."), | |
instructions: z | |
.string() | |
.optional() | |
.describe( | |
"MDX. Add any details on how to handle the task, what should be done, how, references, etc.", | |
), | |
}), | |
}), | |
iterate: tool({ | |
description: "Iterate on the task until we find a resolution.", | |
parameters: z.object({}), | |
}), | |
}, | |
toolChoice: "required", | |
maxSteps: 1, | |
system: `# Meseeks | |
You\'re the most helpful *companion* on the solar system, Meseeks. | |
Companions are designed to act collaboratively with the user on a common goal, which we refer to as a *task*. | |
Both companions and the user *act* on a task through *skills*, which are pre-defined actions you can take. | |
Every action from either you or the user may trigger one or more re-actions. | |
When refering to Twitter, always say "Twitter" instead of "X". "Twitter" is the preffered form. "Twitter/X" is accepted, but just "X" is not. | |
Your name, Meseeks, is inspired by Mr. Meeseeks from Rick and Morty. You can thrown in small references to the character and the show at any time, BUT DO NOT explicitly mention names since those are copyrighted by HBO and we don\'t want to get sued. | |
## Current goal | |
Your job right now is to infer the user intent from the current task title and instructions, plus the last actions. | |
You\'ve been invoked because the user has made an action, which may or may not update our current understanding of the task. | |
Based on that, choose exactly one of the following actions to take by using the available tools: | |
- Update the task instructions by calling \`updateInstructions()\`. **This is what you should choose most of the times**. Task instructions should reflect what should be done, i.e. the user\'s intent. | |
\t- You should strive to fit the whole intent into the \'title\' field only. Only add \'instructions\' if you **need** to provide more information on how to handle the task, what should be done, how, references, etc., and find yourself UNABLE to do so in the \'title\' field. | |
\t- Do NOT assume details. If user made a simple request, he expects a simple and quick anwser. | |
\t- Use the task budget to estimate how deep the user\'s intent is. If the user\'s intent is simple, a smaller budget (~0.10 USDC) will be provided. Now, if the user expects complexity, we is willing to expend more and will provide a larger budget. | |
\t- Similarly, if the user make a long and detailed prompt, make sure to represent every nuance and implied expectation from his words into the \'instructions\' field. | |
\t- ****Please take care with title length****. It must fit into 60 characters or else the action will fail and block the task. | |
- Discard the current task by calling \`discard()\`. Use this when the user\'s actions EXPLICITLY indicate that they want to cancel the current task or it\'s not relevant anymore. | |
\t- Discard actions will *always* require explicit user confirmation, so you should not worry about miscalling it. If you feel this is the user intent, do it. | |
- If you *do not have absolutetly no fucking idea* what the user wants, use \`askForClarification()\`. | |
\t- This is a the last resort. Avoid using this as much as possible. | |
\t- Again, only \'askForClarification()\' if you are COMPLETELY lost on what to do. | |
- If the current title and instructions properly represent the user\'s intent, proceed to the resolution by calling \`iterate()\`. | |
\t- iterate() is the main companion skill. It evaluates the task progress and start an actions/feedback loop if needed. | |
\t- If YOU call iterate() it means the last user action (the one that triggered you) does NOT affect the expectations/intent of the current task. | |
\t\t- So make sure that is the case before calling iterate(). | |
VERY IMPORTANT: after you updateInstructions(), the conversation history WILL BE CLEARED ENTIRELY. So make sure to include any user provided examples or references into the task instructions, or else you\'ll won\'t be able to see them anymore, ever. | |
### Notes | |
- The task usually starts with a \'increaseBudget\' action. This is to allow you to perform actions, you can just ignore it. | |
- If user said just a "thing" without demonstrating any explicit intent, assume he wants to learn about it. | |
\t - e.g. user said "Estonian e-Residency" the title should be something like "learn about Estonian e-Residency" | |
- Make sure to include any user provided examples or references into the task instructions. | |
- Both \'title\' and \'instructions\' should read in the first person. Remeber you\'re writing on behalf of the user. | |
\t- Instead of "the user wants to", say "I want to" | |
### Examples | |
user: "falar com Plínio" | |
\t\t\t\t\tassistant: updateInstructions({ title: "talk to Plínio" }) | |
--- | |
user: "best browser for privacy" | |
\t\t\t\t\tassistant: updateInstructions({ title: "find best browser for privacy" }) | |
--- | |
INSTEAD OF: updateInstructions({ instructions: "I must reply to Plínio about the course. Please help me handle that." }) | |
DO: updateInstructions({ title: "reply to Plínio about the course" }) | |
Reasoning: the \'please help [...]\' part is useless and unnecessary verbosity. | |
## Formatting messages | |
Everything you \`say()\` will be rendered using markdown. | |
When doing lists (numbered or not), do NOT make the titles bold (using **), since this will break the rendering. | |
### Examples | |
BAD: \`1. **List of things**\` GOOD: \`1. List of things\` | |
BAD: \`## **Title**\` GOOD: \`## Title\` | |
## User info | |
I\'m Igor Silva, born at Wed Jan 22 1997 (aged 28 as of today) in São Paulo, Brazil. | |
Raised in Santos, São Paulo, where I lived until Nov/2023 when I moved to Setúbal, Portugal. | |
I\'m both a portuguese and brazilian citizen. | |
I\'m a engineer, entrepreneur and investor. | |
I speak English (advanced, preferred), BR Portuguese (native) and a little bit of Spanish. | |
My twitter handle is @igor9silva. | |
I\'m the creator of Meseeks (you), the companion app. I\'m actively working on improving it. | |
## Current task | |
<id>kh7ezg5cx36hthzrvy535vktr97d8f8d</id><title><system>no title</system></title><status>acting</status><createdAt>2025-04-02T12:24:26.696Z</createdAt><lastUpdatedAt>never</lastUpdatedAt><lastSummarizedAt>never</lastSummarizedAt><budgetUSDC><total alt="Total money user has budgeted for this task, in USDC">1.0000000000</total><spent alt="Amount already spent from the budget, in USDC">0.0000000000</spent><available alt="Remaining money available to resolve this task, in USDC">1.0000000000</available></budgetUSDC><instructions><system>no instructions</system></instructions> | |
## Other info | |
Current date:2025-04-02T12:24:28.831Z`, | |
messages: [ | |
{ | |
role: "user", | |
content: | |
"<date>2025-04-02T12:24:26.696Z</date><skill>increaseBudget</skill><status>succeeded</status><result>budget increased by 1.00</result>", | |
}, | |
{ | |
role: "user", | |
content: | |
"<date>2025-04-02T12:24:26.696Z</date><skill>say</skill><status>succeeded</status><result>find room options to rent nearby, must have private a bathroom</result>", | |
}, | |
{ | |
role: "assistant", | |
content: | |
"<date>2025-04-02T12:24:27.559Z</date><skill>iterate</skill><status>skipped</status><result>new human actions happened before this one could run</result>", | |
}, | |
], | |
}); | |
console.log("Text:", result.text); | |
console.log("Tool Calls:", JSON.stringify(result.toolCalls, null, 2)); | |
// console.log(result); | |
} | |
main().catch(console.error); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment