Skip to content

Commit

Permalink
v2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpreetbedi committed Jan 2, 2024
1 parent 8fac84a commit 2dab03b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion phi/workspace/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions phi/workspace/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 2dab03b

Please sign in to comment.