Rename observer to task 2.0 (#1629)

This commit is contained in:
Shuchang Zheng
2025-01-24 01:16:16 +08:00
committed by GitHub
parent a7752de6a9
commit 2956d4db0b
2 changed files with 4 additions and 4 deletions

View File

@@ -143,12 +143,12 @@ function WorkflowPostRunParameters() {
{workflowRun.observer_task ? (
<div className="rounded bg-slate-elevation2 p-6">
<div className="space-y-4">
<h1 className="text-lg font-bold">Observer Parameters</h1>
<h1 className="text-lg font-bold">Task 2.0 Parameters</h1>
<div className="flex gap-16">
<div className="w-80">
<h1 className="text-lg">Observer Prompt</h1>
<h1 className="text-lg">Task 2.0 Prompt</h1>
<h2 className="text-base text-slate-400">
The original prompt for the observer
The original prompt for the task
</h2>
</div>
<AutoResizingTextarea

View File

@@ -137,7 +137,7 @@ function WorkflowRunOutput() {
{observerOutput ? (
<div className="rounded bg-slate-elevation2 p-6">
<div className="space-y-4">
<h1 className="text-lg font-bold">Observer Output</h1>
<h1 className="text-lg font-bold">Task 2.0 Output</h1>
<CodeEditor
language="json"
value={JSON.stringify(observerOutput, null, 2)}