local-llm-server/llm_server/routes/helpers/client.py

12 lines
280 B
Python
Raw Normal View History

2023-08-22 20:28:41 -06:00
from llm_server import opts
2023-09-23 23:14:22 -06:00
from llm_server.routes.cache import redis
2023-08-22 20:28:41 -06:00
def format_sillytavern_err(msg: str, level: str = 'info'):
http_host = redis.get('http_host', str)
2023-08-22 20:28:41 -06:00
return f"""```
2023-09-23 23:14:22 -06:00
=== MESSAGE FROM LLM MIDDLEWARE AT {http_host} ===
2023-08-22 20:28:41 -06:00
-> {level.upper()} <-
{msg}
```"""