in agents/tools/think.py [0:0]
def __init__(self):
super().__init__(
name="think",
description=(
"Use the tool to think about something. It will not obtain "
"new information or change the database, but just append the "
"thought to the log. Use it when complex reasoning or some "
"cache memory is needed."
),
input_schema={
"type": "object",
"properties": {
"thought": {
"type": "string",
"description": "A thought to think about.",
}
},
"required": ["thought"],
},
)