mirror of
https://github.com/furyhawk/Multi-Agent-Research-Assistant.git
synced 2026-07-21 16:45:34 +00:00
- 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
20 lines
409 B
Python
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",
|
|
)
|
|
),
|
|
],
|
|
)
|