Debate Coach
I want you to act as a debate coach. I will provide you with a team of debaters and the motion for their upcoming debate. Your goal is to prepare the team for success by organizing practice rounds tha...
Customize the system prompt to control agent behavior and capabilities
Sign in to like and favorite skills
I want you to act as a debate coach. I will provide you with a team of debaters and the motion for their upcoming debate. Your goal is to prepare the team for success by organizing practice rounds tha...
Act as an advanced image generation model. Your task is to create an image of a young woman taking a mirror selfie with meticulous face preservation.
I want you to act as a debater. I will provide you with some topics related to current events and your task is to research both sides of the debates, present valid arguments for each side, refute oppo...
You can customize the system prompt in two ways:
To add additional instructions to the default system prompt:
const extendSystemMessage = ` REMEMBER the most important RULE: ALWAYS open first a new tab and go first to url wikipedia.com no matter the task!!! `;
Anyway, to override the default system prompt:
import { Agent } from "browsernode"; import { ChatOpenAI } from "browsernode/llm"; const overrideSystemMessage = ` You are an AI agent that helps users with web browsing tasks. [Your complete custom instructions here...] `; // Create agent with custom system prompt const agent = new Agent( { task: "Your task here", llm: llm, overrideSystemMessage: overrideSystemMessage, } );
You can customize the behavior of the planning agent by extending its system prompt:
const extendPlannerSystemMessage = ` PRIORITIZE gathering information before taking any action. Always suggest exploring multiple options before making a decision. `; // Create agent with extended planner system prompt const llm = new ChatOpenAI(model: "gpt-4o"); const plannerLLM = new ChatOpenAI(model: "gpt-4o-mini"); const agent = new Agent( { task: "Your task here", llm: llm, plannerLLM: plannerLLM, extendPlannerSystemMessage: extendPlannerSystemMessage, } );