From 66d9ec9cadfd41c3bfd3e8cae736ec290a2bdcb2 Mon Sep 17 00:00:00 2001 From: John Smith Date: Thu, 19 Dec 2024 17:41:34 +1030 Subject: [PATCH] feat: Allow passing run context in UI --- app/components/chat/prompt-textarea.tsx | 28 ++++-- app/components/chat/run-config.tsx | 108 ++++++++++++++++++------ app/components/chat/sdk-commands.tsx | 10 +-- 3 files changed, 107 insertions(+), 39 deletions(-) diff --git a/app/components/chat/prompt-textarea.tsx b/app/components/chat/prompt-textarea.tsx index fea1f632..0e0308c5 100644 --- a/app/components/chat/prompt-textarea.tsx +++ b/app/components/chat/prompt-textarea.tsx @@ -16,13 +16,14 @@ import { TemplateSearch } from "./template-search"; export type RunConfiguration = { attachedFunctions: string[]; - structuredOutput: string | null; + resultSchema: string | null; reasoningTraces: boolean; prompt: string; template?: { id: string; input: Record; }; + runContext: string | null; }; export function PromptTextarea({ clusterId }: { clusterId: string }) { @@ -48,14 +49,16 @@ export function PromptTextarea({ clusterId }: { clusterId: string }) { const [runConfig, setRunConfig] = useState({ attachedFunctions: [] as string[], - structuredOutput: null as string | null, + resultSchema: null as string | null, reasoningTraces: true, + runContext: null as string | null, }); const handleConfigChange = (newConfig: { attachedFunctions: string[]; - structuredOutput: string | null; + resultSchema: string | null; reasoningTraces: boolean; + runContext: string | null; }) => { setRunConfig(newConfig); }; @@ -80,8 +83,12 @@ export function PromptTextarea({ clusterId }: { clusterId: string }) { body.initialPrompt = config.prompt.replace(/{{.*?}}/g, ""); } - if (config.structuredOutput) { - body.resultSchema = JSON.parse(config.structuredOutput); + if(config.runContext) { + body.context = JSON.parse(config.runContext); + } + + if (config.resultSchema) { + body.resultSchema = JSON.parse(config.resultSchema); } if (config.attachedFunctions && config.attachedFunctions.length > 0) { @@ -119,8 +126,9 @@ export function PromptTextarea({ clusterId }: { clusterId: string }) { setStoredInputs({}); setRunConfig({ attachedFunctions: [], - structuredOutput: null, + resultSchema: null, reasoningTraces: true, + runContext: null }); } @@ -149,9 +157,10 @@ export function PromptTextarea({ clusterId }: { clusterId: string }) { onSubmit({ attachedFunctions: runConfig.attachedFunctions, - structuredOutput: runConfig.structuredOutput, + resultSchema: runConfig.resultSchema, reasoningTraces: runConfig.reasoningTraces, prompt: updatedPrompt, + runContext: runConfig.runContext, template: selectedTemplate ? { id: selectedTemplate.id, @@ -177,9 +186,10 @@ export function PromptTextarea({ clusterId }: { clusterId: string }) { }) => { setRunConfig({ attachedFunctions: template.attachedFunctions, - structuredOutput: template.structuredOutput + resultSchema: template.structuredOutput ? JSON.stringify(template.structuredOutput) : null, + runContext: null, reasoningTraces: true, }); template.initialPrompt && setPrompt(template.initialPrompt); @@ -249,7 +259,7 @@ export function PromptTextarea({ clusterId }: { clusterId: string }) { clusterId={clusterId} config={{ attachedFunctions: runConfig.attachedFunctions, - structuredOutput: runConfig.structuredOutput, + resultSchema: runConfig.resultSchema, prompt, }} /> diff --git a/app/components/chat/run-config.tsx b/app/components/chat/run-config.tsx index c4e96e0c..9e925c4b 100644 --- a/app/components/chat/run-config.tsx +++ b/app/components/chat/run-config.tsx @@ -11,13 +11,15 @@ import { Checkbox } from "../ui/checkbox"; type RunConfigProps = { config: { attachedFunctions: string[]; - structuredOutput: string | null; + resultSchema: string | null; reasoningTraces: boolean; + runContext: string | null; }; onConfigChange: (newConfig: { attachedFunctions: string[]; - structuredOutput: string | null; + resultSchema: string | null; reasoningTraces: boolean; + runContext: string | null; }) => void; }; @@ -27,36 +29,53 @@ const RunConfig: React.FC = ({ config, onConfigChange }) => { config.attachedFunctions.filter(Boolean), ); - const [structuredOutput, setStructuredOutput] = useState( - config.structuredOutput, + + const [runContext, setRunContext] = useState( + config.runContext ? JSON.stringify(config.runContext) : null, + ); + + const [resultSchema, setResultSchema] = useState( + config.resultSchema, ); const [reasoningTraces, setReasoningTraces] = useState( config.reasoningTraces, ); - const hasConfig = attachedFunctions.length > 0 || !!structuredOutput; + const hasConfig = attachedFunctions.length > 0 || !!resultSchema; const handleApplyConfig = () => { - if (structuredOutput) { + if (resultSchema) { try { - JSON.parse(structuredOutput); - setJsonInvalid(false); + JSON.parse(resultSchema); + setResultSchemaJsonInvalid(false); } catch (e) { - toast.error("Invalid JSON in structured output"); + toast.error("Invalid JSON in result schema"); + return; + } + } + + if (runContext) { + try { + JSON.parse(runContext); + setRunContextJsonInvalid(false); + } catch (e) { + toast.error("Invalid JSON in run context"); return; } } onConfigChange({ attachedFunctions, - structuredOutput, + resultSchema, reasoningTraces, + runContext, }); setIsOpen(false); }; - const [jsonInvalid, setJsonInvalid] = useState(false); + const [resultSchemaJsonInvalid, setResultSchemaJsonInvalid] = useState(false); + const [runContextJsonInvalid, setRunContextJsonInvalid] = useState(false); return ( @@ -72,6 +91,11 @@ const RunConfig: React.FC = ({ config, onConfigChange }) => {

Run Configuration

+

+ + Options + to invoke the run with +

= ({ config, onConfigChange }) => { />
-