14 lines
202 B
Python
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)
|