diff --git a/phi/workspace/enums.py b/phi/workspace/enums.py index 57b39a952..8512b3338 100644 --- a/phi/workspace/enums.py +++ b/phi/workspace/enums.py @@ -3,7 +3,7 @@ class WorkspaceStarterTemplate(str, Enum): llm_app = "llm-app" - llm_api = "llm-api" + api_app = "api-app" django_app = "django-app" streamlit_app = "streamlit-app" junior_de = "junior-de" diff --git a/phi/workspace/operator.py b/phi/workspace/operator.py index a731b8b40..c20ac8882 100644 --- a/phi/workspace/operator.py +++ b/phi/workspace/operator.py @@ -26,14 +26,14 @@ TEMPLATE_TO_NAME_MAP: Dict[WorkspaceStarterTemplate, str] = { WorkspaceStarterTemplate.llm_app: "llm-app", - WorkspaceStarterTemplate.llm_api: "llm-api", + WorkspaceStarterTemplate.api_app: "api-app", WorkspaceStarterTemplate.django_app: "django-app", WorkspaceStarterTemplate.streamlit_app: "streamlit-app", WorkspaceStarterTemplate.junior_de: "junior-de", } TEMPLATE_TO_REPO_MAP: Dict[WorkspaceStarterTemplate, str] = { WorkspaceStarterTemplate.llm_app: "https://github.com/phidatahq/llm-app.git", - WorkspaceStarterTemplate.llm_api: "https://github.com/phidatahq/llm-api.git", + WorkspaceStarterTemplate.api_app: "https://github.com/phidatahq/api-app.git", WorkspaceStarterTemplate.django_app: "https://github.com/phidatahq/django-app.git", WorkspaceStarterTemplate.streamlit_app: "https://github.com/phidatahq/streamlit-app.git", WorkspaceStarterTemplate.junior_de: "https://github.com/phidatahq/junior-de.git", diff --git a/pyproject.toml b/pyproject.toml index cb50f17cb..d5205c3fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "phidata" -version = "2.1.2" +version = "2.1.3" description = "AI Toolkit for Engineers" requires-python = ">=3.7" readme = "README.md"