diff --git a/poimen-worker b/poimen-worker index 17509c9..5e95f63 100755 Binary files a/poimen-worker and b/poimen-worker differ diff --git a/workflow/llm_test_workflow.go b/workflow/llm_test_workflow.go index dd9ffe1..45ad75e 100644 --- a/workflow/llm_test_workflow.go +++ b/workflow/llm_test_workflow.go @@ -26,7 +26,7 @@ func LLMTestWorkflow(ctx workflow.Context, input LLMTestWorkflowInput) (string, } var result activity.LLMInferenceOutput - err := workflow.ExecuteActivity(actCtx, activity.LLMInferenceActivity, actInput).Get(actCtx, &result) + err := workflow.ExecuteActivity(actCtx, "LLMInferenceActivity", actInput).Get(actCtx, &result) if err != nil { return "", err }