We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02fb0e8 commit fd286e2Copy full SHA for fd286e2
llmstack/apps/schemas.py
@@ -1,4 +1,5 @@
1
from typing import Any, Dict, List, Optional
2
+
3
from pydantic import BaseModel, Field
4
5
"""
@@ -104,6 +105,9 @@ class AppTemplate(BaseModel):
104
105
106
name: str = Field(None, description='Name of the app template')
107
slug: str = Field(None, description='Unique slug for the app template')
108
+ icon: str = Field(None, description='Icon for the app template')
109
+ category_slugs: List[str] = Field(
110
+ None, description='Slugs of the app template categories')
111
description: str = Field(
112
None, description='Description of the app template')
113
pages: List[AppTemplatePage] = Field(
0 commit comments