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.
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 chain_of_thought_step, get_chain_summary, clear_chain
]
# 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 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](**eval(tool_call.function.arguments))
How It Works
The Chain of Thought tool provides three main functions:
1. 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"]
}
2. get_chain_summary
Get a comprehensive summary of the thinking process:
# No arguments needed
{}
3. clear_chain
Reset the thinking process:
# No arguments needed
{}
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.2.1.tar.gz.
File metadata
- Download URL: chain_of_thought_tool-0.2.1.tar.gz
- Upload date:
- Size: 63.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d37d8e034c67720b71aef41021c9955df74e5451a57790b77afe11dee81076c
|
|
| MD5 |
028fa504112ea804a4db0e1c2a4642c2
|
|
| BLAKE2b-256 |
ce695b56b223a9ab2f016dc2a14e46e7519e119626903beb8f2d1d0d76eb6366
|
File details
Details for the file chain_of_thought_tool-0.2.1-py3-none-any.whl.
File metadata
- Download URL: chain_of_thought_tool-0.2.1-py3-none-any.whl
- Upload date:
- Size: 36.1 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 |
6fe51e03520f565c9c4960707d63ac0be61d3f1b190fdda221129eb340e54b99
|
|
| MD5 |
2e1b4ca9c79048c2812adcbc74a3d08c
|
|
| BLAKE2b-256 |
19c0b96c31db3357b7237bbddc07af64e6371350821ffc8b31806e8fe35e0059
|