Files
Multi-Agent-Research-Assistant/rxconfig.py
T
Abid Ali Awan 06ce6e45cd feat: add Reflex web app with styled markdown report and download
- Reflex UI with styled markdown rendering (headings, bullets, tables, code)
- Download button for markdown report export
- Source research agent now includes current date for recent results
- Reduced report width with proper padding to prevent text cutoff
- Updated README with app structure and features
2026-05-12 00:48:58 +05:00

20 lines
409 B
Python

import reflex as rx
config = rx.Config(
app_name="app",
env_file=".env",
show_built_with_reflex=False,
plugins=[
rx.plugins.SitemapPlugin(),
rx.plugins.RadixThemesPlugin(
theme=rx.theme(
appearance="light",
accent_color="blue",
gray_color="slate",
radius="medium",
)
),
],
)