This commit is contained in:
James Eversole
2025-05-28 12:25:43 -05:00
commit c157641063
6 changed files with 126 additions and 0 deletions

13
llm_tools_tricu_bridge.py Normal file
View File

@ -0,0 +1,13 @@
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)