This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from fasthtml.common import * | |
| from claudette import * | |
| from starlette.responses import StreamingResponse | |
| import asyncio | |
| # Set up the app, including daisyui and tailwind for the chat component | |
| hdrs = (picolink, | |
| Script(src="https://cdn.tailwindcss.com"), | |
| Script(src="https://unpkg.com/htmx-ext-transfer-encoding-chunked@0.2.0/transfer-encoding-chunked.js"), | |
| Link(rel="stylesheet", href="https://cdn.jsdelivr.net/npm/daisyui@4.11.1/dist/full.min.css")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from fasthtml.common import * | |
| from claudette import * | |
| import asyncio | |
| from starlette.responses import StreamingResponse | |
| extlink = Script(src="https://unpkg.com/htmx.ext...chunked-transfer/dist/index.js") | |
| htmxlink = Script(src="https://unpkg.com/htmx.org@1.9.12") | |
| app = FastHTML(hdrs=(picolink,htmxlink,extlink), default_hdrs=False, live=True) |