fed8b2eed7
Backend release / release (push) Waiting to run
Bandit Security Scan / bandit_scan (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / manifest (push) Blocked by required conditions
Build and push DocsGPT FE Docker image for development / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / manifest (push) Blocked by required conditions
Python linting / ruff (push) Waiting to run
Run python tests with pytest / Run tests and count coverage (3.12) (push) Waiting to run
React Widget Build / build (push) Waiting to run
71 lines
2.0 KiB
Python
71 lines
2.0 KiB
Python
from application.agents.tools.base import Tool
|
|
|
|
|
|
THINK_TOOL_ID = "think"
|
|
|
|
THINK_TOOL_ENTRY = {
|
|
"name": "think",
|
|
"actions": [
|
|
{
|
|
"name": "reason",
|
|
"description": (
|
|
"Use this tool to think through your reasoning step by step "
|
|
"before deciding on your next action. Always reason before "
|
|
"searching or answering."
|
|
),
|
|
"active": True,
|
|
"parameters": {
|
|
"properties": {
|
|
"reasoning": {
|
|
"type": "string",
|
|
"description": "Your step-by-step reasoning and analysis",
|
|
"filled_by_llm": True,
|
|
"required": True,
|
|
}
|
|
}
|
|
},
|
|
}
|
|
],
|
|
}
|
|
|
|
|
|
class ThinkTool(Tool):
|
|
"""Pseudo-tool that captures chain-of-thought reasoning.
|
|
|
|
Returns a short acknowledgment so the LLM can continue.
|
|
The reasoning content is captured in tool_call data for transparency.
|
|
"""
|
|
|
|
internal = True
|
|
|
|
def __init__(self, config=None):
|
|
pass
|
|
|
|
def execute_action(self, action_name: str, **kwargs):
|
|
return "Continue."
|
|
|
|
def get_actions_metadata(self):
|
|
return [
|
|
{
|
|
"name": "reason",
|
|
"description": (
|
|
"Use this tool to think through a complex step — analyze "
|
|
"tool results, weigh options, or plan multi-step work — "
|
|
"before taking your next action."
|
|
),
|
|
"parameters": {
|
|
"properties": {
|
|
"reasoning": {
|
|
"type": "string",
|
|
"description": "Your step-by-step reasoning and analysis",
|
|
"filled_by_llm": True,
|
|
"required": True,
|
|
}
|
|
}
|
|
},
|
|
}
|
|
]
|
|
|
|
def get_config_requirements(self):
|
|
return {}
|