improve latex plugin

This commit is contained in:
binary-husky
2024-05-21 10:47:50 +00:00
parent 0a88d18c7a
commit d88c585305
10 changed files with 93 additions and 62 deletions

View File

@@ -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():