MCPcopy Create free account
hub / github.com/OpenDCAI/Paper2Any / FrontendPPTGenerationRequest

Class FrontendPPTGenerationRequest

fastapi_app/schemas.py:288–306  ·  view source on GitHub ↗

Generate editable frontend slides for paper2ppt.

Source from the content-addressed store, hash-verified

286
287
288class FrontendPPTGenerationRequest(BaseModel):
289 """Generate editable frontend slides for paper2ppt."""
290 chat_api_url: Optional[str] = None
291 api_key: Optional[str] = None
292 credential_scope: Optional[str] = None
293 email: Optional[str] = None
294 model: str = settings.PAPER2PPT_CONTENT_MODEL
295 language: str = "zh"
296 style: str = ""
297 result_path: str
298 pagecontent: str
299 include_images: bool = False
300 image_mode: Optional[Literal["none", "paper", "generated", "hybrid"]] = None
301 image_style: str = "academic_illustration"
302 image_model: Optional[str] = None
303 page_id: Optional[int] = None
304 edit_prompt: Optional[str] = None
305 current_slide: Optional[str] = None
306 skip_slides: Optional[str] = None
307
308
309class FrontendPPTExportRequest(BaseModel):

Callers 3

run_frontend_workflowFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected