mirror of
https://github.com/tiennm99/serena.git
synced 2026-07-13 21:07:10 +00:00
11 lines
356 B
Python
11 lines
356 B
Python
from serena.agent import SerenaAgent
|
|
|
|
if __name__ == "__main__":
|
|
agent = SerenaAgent("myproject.yml")
|
|
tools = {}
|
|
for tool in agent.tools.values():
|
|
tools[tool.get_name()] = tool
|
|
for tool_name in sorted(tools.keys()):
|
|
tool = tools[tool_name]
|
|
print(f" * `{tool_name}`: {tool.get_tool_description().strip()}")
|