Go to the source code of this file.
|
| Annotated[str, "search page as a rendered template"] | app.index () |
| |
| Annotated[str, "search page as a rendered template"] | app.toggle_light () |
| |
| Annotated[str, "item creation page as a rendered template"] | app.create_item () |
| |
| Annotated[tuple, {"status":str, "status_code":int}] | app.send_creation () |
| |
| Annotated[str, "item page as a rendered template"] | app.item (item_id) |
| |
| Annotated[tuple, {"status":str, "status_code":int}] | app.update_item (item_id) |
| |
| Annotated[str, "search page as a rendered template"] | app.delete_item (item_id) |
| |
| Response | app.search (term) |
| |
| Exception | app.handle_exception (e) |
| |
| Response | app.get_env () |
| |
| tuple[Response, int]|Response | app.get_ollama_models () |
| |
| tuple[Response, int]|Response | app.get_weight () |
| |
| Response | app.ask_llm_question () |
| |
| Annotated[tuple, {"status":str, "status_code":int}] | app.log_message () |
| |