A lightweight Chain of Thought reasoning tool for LLM function calling
Project description
Chain of Thought Tool
A lightweight Python package that provides structured Chain of Thought reasoning capabilities for LLMs through function calling.
What This Library Is (and Isn't)
This library provides a stateful reasoning tracker for LLM function-calling APIs. It is named for Wei et al. 2022 "Chain of Thought Prompting Elicits Reasoning in Large Language Models" but is structurally descended from the MCP sequential-thinking server pattern — a tool-call-based step tracker where the LLM calls tools to record each reasoning step.
What it does: Track multi-step reasoning with confidence scoring, evidence collection, assumption mapping, and contradiction detection.
What it doesn't do: Perform LLM inference, prompt engineering, or chain-of-thought prompting. The LLM is the reasoner; this library is the notebook.
Installation
pip install chain-of-thought-tool
Or install from source:
cd chain-of-thought-tool
pip install -e .
Quick Start
from chain_of_thought import TOOL_SPECS, HANDLERS
# Add to your LLM tools array
tools = [
*TOOL_SPECS, # Adds all 8 tools
]
# In your tool handling logic
def handle_tool_call(tool_name, tool_args):
if tool_name in HANDLERS:
return HANDLERS[tool_name](**tool_args)
# ... handle other tools
Usage with AWS Bedrock Converse API
import boto3
from chain_of_thought import TOOL_SPECS, HANDLERS
bedrock = boto3.client('bedrock-runtime')
# Your conversation with tools
response = bedrock.converse(
modelId="anthropic.claude-3-5-sonnet-20241022-v2:0",
messages=[
{
"role": "user",
"content": [{"text": "Help me think through whether I should buy a house or keep renting."}]
}
],
toolConfig={
"tools": TOOL_SPECS # Just drop it in!
}
)
# Handle tool calls
for content in response['output']['message']['content']:
if content.get('toolUse'):
tool_use = content['toolUse']
tool_name = tool_use['name']
tool_args = tool_use['input']
# Execute the tool
result = HANDLERS[tool_name](**tool_args)
print(f"Tool {tool_name} result: {result}")
Usage with OpenAI
import json
import openai
from chain_of_thought import TOOL_SPECS, HANDLERS
# Convert to OpenAI format
openai_tools = []
for tool in TOOL_SPECS:
openai_tools.append({
"type": "function",
"function": {
"name": tool["toolSpec"]["name"],
"description": tool["toolSpec"]["description"],
"parameters": tool["toolSpec"]["inputSchema"]["json"]
}
})
client = openai.OpenAI()
response = client.chat.completions.create(
model="gpt-4",
messages=[{"role": "user", "content": "Help me think through a complex decision."}],
tools=openai_tools
)
# Handle tool calls
if response.choices[0].message.tool_calls:
for tool_call in response.choices[0].message.tool_calls:
result = HANDLERS[tool_call.function.name](**json.loads(tool_call.function.arguments))
How It Works
The library provides 8 tools in two categories:
Core Reasoning Tools
chain_of_thought_step
Process individual thoughts in a structured sequence with confidence tracking:
{
"thought": "I need to consider the financial implications of buying vs renting",
"step_number": 1,
"total_steps": 5,
"next_step_needed": true,
"reasoning_stage": "Problem Definition",
"confidence": 0.8,
"evidence": ["Current market conditions", "Personal financial situation"],
"assumptions": ["Interest rates will remain stable"]
}
get_chain_summary
Get a comprehensive summary of the thinking process:
# No arguments needed
{}
clear_chain
Reset the thinking process:
# No arguments needed
{}
export_chain / import_chain
Persist and restore reasoning chains:
HANDLERS["export_chain"](file_path="analysis.json")
HANDLERS["import_chain"](file_path="analysis.json")
Auxiliary Reasoning Tools
Three additional tools provide structured scaffolding for common reasoning patterns. These use template and heuristic-based implementations — they produce structured output shapes that guide an LLM's reasoning, not AI-driven analysis.
generate_hypotheses
Returns a framework of hypothesis types (scientific, intuitive, contrarian, systematic) for an observation. Templates structure divergent thinking — the LLM fills in the substance.
HANDLERS["generate_hypotheses"](observation="Why did user engagement drop 30%?", hypothesis_count=4)
map_assumptions
Identifies linguistic indicators of assumptions (e.g., "clearly", "obviously", "must") using keyword-based heuristics. Returns a structured framework for critical thinking.
HANDLERS["map_assumptions"](statement="Clearly the migration will improve performance", depth="deep")
calibrate_confidence
Applies heuristic pattern matching (absolute language detection, domain complexity) to produce adjusted confidence with uncertainty bands. A calibration rubric for the LLM.
HANDLERS["calibrate_confidence"](prediction="Revenue will grow 20%", initial_confidence=0.9, context="Q4 forecast")
Capability Assessment
Honest evaluation of what each tool category delivers:
| Category | Tools | Implementation | What They Actually Do |
|---|---|---|---|
| Core | chain_of_thought_step, get_chain_summary, clear_chain, export_chain, import_chain |
Full stateful reasoning chain | Store, retrieve, summarize, persist, and restore structured reasoning steps with confidence tracking, evidence, assumptions, and stage classification. These are the real deal. |
| Auxiliary | generate_hypotheses, map_assumptions, calibrate_confidence |
Template/heuristic scaffolding | Produce structured output shapes using keyword matching and fixed templates. The LLM consuming these outputs performs the actual analysis. Zero-cost, zero-latency, synchronous. |
Key distinction: Core tools manage stateful reasoning data. Auxiliary tools provide reasoning frameworks — structured containers that prompt more careful thinking. The LLM is the analyst; the library provides the scaffolding.
Topology and Revision Capabilities
| Capability | Status | Notes |
|---|---|---|
| Branching | Not supported | Steps are a flat sequence; no forking or merge. See ADR-0012. |
| Revision | Implicit via step_number collision | Re-submitting an existing step_number replaces that step in place. See ADR-0013. |
| Self-consistency sampling | Not supported | Could be implemented externally by running multiple chains and comparing summaries. See ADR-0014 for a recipe. |
| Topology | Primarily linear | Optional DAG structure via dependencies and contradicts fields, but no cycle detection or traversal. See ADR-0015. |
Intellectual Genealogy
The auxiliary reasoning tools trace to different traditions than Wei et al. 2022:
- Hypothesis Generation (abductive reasoning): Peirce's framework for generating explanatory hypotheses
- Assumption Mapping (critical thinking): Systematic identification of explicit and implicit assumptions
- Confidence Calibration (forecasting): Tetlock's superforecasting research on overconfidence correction
See ADR-0016 for full genealogy.
Advanced Features
Parameter Validation
The package includes dedicated parameter validators that ensure secure and robust input handling:
from chain_of_thought import ParameterValidator
validator = ParameterValidator()
# Validate individual parameters
safe_thought = validator.validate_thought_param(user_input)
safe_confidence = validator.validate_confidence_param(0.85)
# Or validate all parameters at once
validated = validator.validate_input(
thought="My thinking process",
step_number=1,
total_steps=5,
next_step_needed=True,
reasoning_stage="Analysis",
confidence=0.8
)
Security Features:
- XSS Prevention: HTML escaping for all string inputs
- Input Length Limits: Prevents DoS attacks with size restrictions
- Type Validation: Ensures correct data types for all parameters
- Range Validation: Numeric inputs are bounded within reasonable limits
Architecture Benefits:
- Separation of Concerns: Validation logic is isolated from business logic
- Reusability: Validators can be used across different classes
- Testability: Validation rules can be unit tested independently
- Maintainability: Changes to validation rules are centralized
Confidence Tracking
Each step can include a confidence level (0.0-1.0) to indicate certainty:
{
"thought": "Based on my analysis, renting is more flexible",
"confidence": 0.85,
...
}
Dependencies and Contradictions
Track relationships between thoughts:
{
"thought": "This contradicts my earlier assumption",
"dependencies": [1, 2], # Depends on steps 1 and 2
"contradicts": [3], # Contradicts step 3
...
}
Evidence and Assumptions
Make reasoning transparent:
{
"evidence": ["Market data shows 5% annual appreciation"],
"assumptions": ["My job will remain stable"],
...
}
Structured Stages
Guide thinking through defined stages:
Problem DefinitionResearchAnalysisSynthesisConclusion
Why This Approach?
Traditional Problems:
- ❌ MCP tools require separate server processes
- ❌ Framework-specific tools (LangChain, etc.)
- ❌ Complex infrastructure for simple functions
Our Solution:
- ✅ Simple
pip installand import - ✅ Works with any LLM API (OpenAI, Anthropic, etc.)
- ✅ Self-contained tool specs and implementations
- ✅ Zero infrastructure - just Python functions
- ✅ Structured reasoning with confidence tracking
Thread Safety
For production use with multiple concurrent conversations:
from chain_of_thought import ThreadAwareChainOfThought
# Create isolated instance per conversation
cot = ThreadAwareChainOfThought(conversation_id="user-123")
tools = cot.get_tool_specs()
handlers = cot.get_handlers()
# Use in your conversation
response = bedrock.converse(
toolConfig={"tools": tools},
# ...
)
# Handle with thread-specific handlers
result = handlers[tool_name](**tool_args)
Contributing
This project demonstrates pluggable LLM tools. Contributions welcome for:
- Improved reasoning capabilities
- Additional metadata tracking
- Better summarization algorithms
- Integration helpers for more platforms
License
MIT License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file chain_of_thought_tool-0.3.1.tar.gz.
File metadata
- Download URL: chain_of_thought_tool-0.3.1.tar.gz
- Upload date:
- Size: 124.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1ec2322d3e08a0a2851908c1f90f1cd7231fde3a8b5b401e557fbd00fb493bd
|
|
| MD5 |
fce8a4e1af67864fcdc061aeb4d08dfb
|
|
| BLAKE2b-256 |
5cf1db80356bf2a60e740064a1dbda4fb5ac2e48187ce4d73021116ecd592c3d
|
File details
Details for the file chain_of_thought_tool-0.3.1-py3-none-any.whl.
File metadata
- Download URL: chain_of_thought_tool-0.3.1-py3-none-any.whl
- Upload date:
- Size: 37.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3e72b2aa6ed9858b1640c803bc7d4a6cb4046db9875fc043de0ff3930a3a0b0
|
|
| MD5 |
ab604ac47e8dba560f73db7f0adb6995
|
|
| BLAKE2b-256 |
255f2bc2d90a910110695b775ca51f49869e8d55ce7fc5cb09f6511d82a1d5a7
|