Spaces:
Running
Running
from fastapi import APIRouter | |
router = APIRouter(prefix="/api/info", tags=["Info"]) | |
def about(): | |
return {"name": "CHB", "tagline": "Multimodal Assistant", "version": "1.0.0"} | |
def howto(): | |
return { | |
"steps": [ | |
"Sign up or log in", | |
"Use Chat to send messages, long-press the paperclip to switch modes", | |
"Go to API Keys to generate or revoke keys" | |
] | |
} | |