baLLseM / routers /prompt.py
hqms's picture
initial commit
8578816
raw
history blame contribute delete
267 Bytes
from model.llm_agent import llm_agent
class LLMPrompt(object):
def __init__(self):
pass
def prompt(self, req: dict):
text = req.get("text")
result = llm_agent.prompt(text)
return {"result": result}
llm_prompt = LLMPrompt()