improve latex plugin

这个提交包含在:
binary-husky
2024-05-21 10:47:50 +00:00
父节点 0a88d18c7a
当前提交 d88c585305
共有 10 个文件被更改,包括 93 次插入62 次删除

查看文件

@@ -7,7 +7,7 @@ class ArgProperty(BaseModel): # PLUGIN_ARG_MENU
title: str = Field(description="The title", default="")
description: str = Field(description="The description", default="")
default_value: str|float = Field(description="The default value", default="")
type: str = Field(description="The type", default="")
type: str = Field(description="The type", default="") # currently we support ['string', 'dropdown']
options: List[str] = Field(default=[], description="List of options available for the argument")
class GptAcademicPluginTemplate():