MCPcopy Create free account
hub / github.com/SamuelSchmidgall/AgentLaboratory / example_command

Method example_command

agents.py:336–341  ·  view source on GitHub ↗
(self, phase)

Source from the content-addressed store, hash-verified

334 return ""
335
336 def example_command(self, phase):
337 if phase not in self.phases:
338 raise Exception(f"Invalid phase: {phase}")
339 return (
340 "You can produce dialogue using the following command: ```DIALOGUE\ndialogue here\n```\n where dialogue here is the actual dialogue you will send and DIALOGUE is just the word DIALOGUE.\n"
341 "When performing a command, make sure to include the three ticks (```) at the top and bottom ```COMMAND\n<Insert command here>\n``` where COMMAND is the specific command you want to run (e.g. REPORT, DIALOGUE).\n")
342
343 def command_descriptions(self, phase):
344 if phase not in self.phases:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected