idk formatting

im just procrastinating because i dont think i want to start making the
client
This commit is contained in:
Charlotte Som 2025-02-26 04:36:06 +00:00
parent 2e828600ea
commit 2ef699600e

View file

@ -4,6 +4,8 @@ from .tid import tid_now
import json
db = sqlite_utils.Database(llm.cli.logs_db_path())
girlypop_prompt = llm.cli.load_template("girlypop").system
async def list_conversations(request: Request):
conversations = []
@ -11,7 +13,6 @@ async def list_conversations(request: Request):
conversations.append({ "id": row["id"], "name": row["name"] })
return JSONResponse(conversations)
girlypop_prompt = llm.cli.load_template("girlypop").system
async def connect_to_conversation(ws: WebSocket):
continuing = bool(ws.query_params["continue"])