Atom-of-thoughts

by kbsooo
Verified

AoT-light

A lightweight version of Atom of Thoughts (AoT) designed for faster processing and quicker results. This streamlined version sacrifices some depth of analysis for speed, making it ideal for time-sensitive reasoning tasks.

When to use:

  • Quick brainstorming sessions requiring atomic thought organization
  • Time-sensitive problem solving where speed is prioritized over exhaustive analysis
  • Simpler reasoning tasks that don't require deep decomposition
  • Initial exploration before using the full AoT for deeper analysis
  • Learning or demonstration purposes where response time is important

Key differences from full AoT:

  • Lower maximum depth (3 instead of 5) for faster processing
  • Simplified verification process
  • Immediate conclusion suggestion for high-confidence hypotheses
  • Reduced computational overhead and response payload
  • Optimized for speed rather than exhaustive analysis

Atom types and parameters are the same as the full AoT tool.

Input Schema

NameRequiredDescriptionDefault
atomIdYesUnique identifier for the atom
atomTypeYesType of atom
confidenceYesConfidence level of this atom (value between 0-1)
contentYesActual content of the atom
dependenciesYesList of IDs of other atoms this atom depends on
depthNoDepth level of this atom (optional, defaults to 0)
isVerifiedNoWhether this atom has been verified

Input Schema (JSON Schema)

{ "properties": { "atomId": { "description": "Unique identifier for the atom", "type": "string" }, "atomType": { "description": "Type of atom", "enum": [ "premise", "reasoning", "hypothesis", "verification", "conclusion" ], "type": "string" }, "confidence": { "description": "Confidence level of this atom (value between 0-1)", "maximum": 1, "minimum": 0, "type": "number" }, "content": { "description": "Actual content of the atom", "type": "string" }, "dependencies": { "description": "List of IDs of other atoms this atom depends on", "items": { "type": "string" }, "type": "array" }, "depth": { "description": "Depth level of this atom (optional, defaults to 0)", "type": "number" }, "isVerified": { "description": "Whether this atom has been verified", "type": "boolean" } }, "required": [ "atomId", "content", "atomType", "dependencies", "confidence" ], "type": "object" }

You must be authenticated.

Other Tools