Atom-of-thoughts

by kbsooo
Verified

atomcommands

A command tool to control the decomposition-contraction mechanism and automatic termination of Atom of Thoughts.

Use this tool to access advanced features of AoT:

  1. Decomposition (decompose): Decompose a specified atom into smaller sub-atoms
  2. Complete decomposition (complete_decomposition): Complete an ongoing decomposition process
  3. Check termination status (termination_status): Check the termination status of the current AoT process
  4. Get best conclusion (best_conclusion): Get the verified conclusion with the highest confidence
  5. Change settings (set_max_depth): Change the maximum depth limit

Command descriptions:

  • command: Command to execute (decompose, complete_decomposition, termination_status, best_conclusion, set_max_depth)
  • atomId: Atom ID to use with the command (only required for decompose command)
  • decompositionId: ID of the decomposition process (only required for complete_decomposition command)
  • maxDepth: Maximum depth value to set (only required for set_max_depth command)

Input Schema

NameRequiredDescriptionDefault
atomIdNoAtom ID to use with the command
commandYesCommand to execute
decompositionIdNoID of the decomposition process to complete
maxDepthNoMaximum depth value to set

Input Schema (JSON Schema)

{ "properties": { "atomId": { "description": "Atom ID to use with the command", "type": "string" }, "command": { "description": "Command to execute", "enum": [ "decompose", "complete_decomposition", "termination_status", "best_conclusion", "set_max_depth" ], "type": "string" }, "decompositionId": { "description": "ID of the decomposition process to complete", "type": "string" }, "maxDepth": { "description": "Maximum depth value to set", "type": "number" } }, "required": [ "command" ], "type": "object" }

You must be authenticated.

Other Tools