Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "api"
version = "0.55.0"
version = "0.55.1"
description = "Agenta API"
authors = [{ name = "Mahmoud Mabrouk", email = "[email protected]" }]

Expand Down
2 changes: 1 addition & 1 deletion sdk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "agenta"
version = "0.55.0"
version = "0.55.1"
description = "The SDK for agenta is an open-source LLMOps platform."
readme = "README.md"
authors = ["Mahmoud Mabrouk <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion web/oss/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agenta/oss",
"version": "0.55.0",
"version": "0.55.1",
"private": true,
"engines": {
"node": ">=18"
Expand Down
4 changes: 3 additions & 1 deletion web/oss/src/components/pages/app-management/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@ const AppManagement: React.FC = () => {
const setStatusData = useSetAtom(appCreationStatusAtom)
const resetAppCreation = useSetAtom(resetAppCreationAtom)
const [statusModalOpen, setStatusModalOpen] = useState(false)
const [fetchingCustomWorkflow, setFetchingCustomWorkflow] = useState(false)
const {openModal} = useCustomWorkflowConfig({
setStatusModalOpen,
setFetchingTemplate: setFetchingCustomWorkflow,
appId: "",
})
const posthog = usePostHogAg()
Expand Down Expand Up @@ -226,7 +228,7 @@ const AppManagement: React.FC = () => {

<CreateAppStatusModal
open={statusModalOpen}
loading={fetchingTemplate}
loading={fetchingTemplate || fetchingCustomWorkflow}
onErrorRetry={onErrorRetry}
onTimeoutRetry={onTimeoutRetry}
onCancel={() => {
Expand Down
1 change: 1 addition & 0 deletions web/oss/src/lib/helpers/errorHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {message} from "antd"

export const getErrorMessage = (error: any, fallback = "An unknown error occurred!") => {
let message = fallback
if (error == null) return message
error?.preventDefault && error.preventDefault()
if (typeof error === "string") message = error
else if (error.message) message = error.message
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agenta-web",
"version": "0.55.0",
"version": "0.55.1",
"workspaces": [
"ee",
"oss",
Expand Down