Files
llm-tools-tricu-bridge/llm_tools_tricu_bridge.py
James Eversole c157641063 init
2025-05-28 12:25:43 -05:00

14 lines
202 B
Python

import llm
def tricu-bridge(input: str) -> str:
"""
Description of tool goes here.
"""
return f"hello {input}"
@llm.hookimpl
def register_tools(register):
register(tricu-bridge)