mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-20 15:11:09 +00:00
0e22c373af
* feat: implment backend for adjust report style * feat: add web part * fix test cases * fix: fix typing --------- Co-authored-by: Henry Li <henry1943@163.com>
9 lines
162 B
Python
9 lines
162 B
Python
import enum
|
|
|
|
|
|
class ReportStyle(enum.Enum):
|
|
ACADEMIC = "academic"
|
|
POPULAR_SCIENCE = "popular_science"
|
|
NEWS = "news"
|
|
SOCIAL_MEDIA = "social_media"
|