|
from abc import ABC, abstractmethod |
|
from typing import Dict, List, Optional |
|
|
|
import gradio as gr |
|
|
|
import ai |
|
|
|
|
|
class Component(ABC): |
|
vname = None |
|
|
|
def __init__(self, id_: int, visible: bool = False): |
|
|
|
self._id = id_ |
|
self._source = self.__class__.__name__ |
|
self._initial_visibility = visible |
|
|
|
|
|
self.component_id: gr.Number |
|
self.visible: gr.Number |
|
self.gr_component = gr.Box |
|
self.output: gr.Textbox |
|
|
|
@abstractmethod |
|
def _render(self, id_: int, visible: bool): |
|
... |
|
|
|
@abstractmethod |
|
def _execute(self): |
|
... |
|
|
|
def render(self) -> None: |
|
self.component_id = gr.Number(value=self._id, visible=False) |
|
self.visible = gr.Number(int(self._initial_visibility), visible=False) |
|
self.gr_component = self._render(self._id, self._initial_visibility) |
|
|
|
def execute(self, *args): |
|
print(f"Executing {self._source} :: {self._id}") |
|
return self._execute(*args) |
|
|
|
|
|
class Input(Component): |
|
vname = "v" |
|
|
|
def _render(self, id_: int, visible: bool) -> gr.Textbox: |
|
self.output = gr.Textbox( |
|
label=f"Input: {{{self.vname}{id_}}}", |
|
interactive=True, |
|
placeholder="Variable value", |
|
visible=visible, |
|
) |
|
return self.output |
|
|
|
def _execute(self) -> None: |
|
pass |
|
|
|
|
|
class Task(Component, ABC): |
|
vname = "t" |
|
|
|
def __init__(self, id_: int, visible: bool = False): |
|
super().__init__(id_, visible) |
|
self.output: gr.Textbox |
|
|
|
@abstractmethod |
|
def inputs(self) -> List: |
|
... |
|
|
|
@property |
|
def _n_inputs(self) -> int: |
|
return len(self.inputs()) |
|
|
|
def render(self) -> None: |
|
super().render() |
|
self.n_inputs = gr.Number(value=self._n_inputs, visible=False) |
|
|
|
|
|
class AITask(Task): |
|
def _render(self, id_: int, visible: bool) -> gr.Box: |
|
with gr.Box(visible=visible) as gr_component: |
|
gr.Markdown(f"AI task") |
|
with gr.Row(): |
|
self.prompt = gr.Textbox( |
|
label="Instructions", |
|
lines=10, |
|
interactive=True, |
|
placeholder="What is the AI assistant meant to do?", |
|
) |
|
self.output = gr.Textbox( |
|
label=f"Output: {{{self.vname}{id_}}}", |
|
lines=10, |
|
interactive=False, |
|
) |
|
return gr_component |
|
|
|
def _execute(self, prompt: str, prompt_vars: Dict[str, str]) -> Optional[str]: |
|
if prompt: |
|
formatted_prompt = prompt.format(**prompt_vars) |
|
return ai.llm.next([{"role": "user", "content": formatted_prompt}]) |
|
|
|
def inputs(self) -> List[gr.Textbox]: |
|
return [self.prompt] |
|
|
|
|
|
MAX_INPUTS = 10 |
|
MAX_TASKS = 10 |
|
|
|
|
|
all_inputs = {i: Input(i) for i in range(MAX_INPUTS)} |
|
all_tasks = {i: AITask(i) for i in range(MAX_TASKS)} |
|
|
|
all_inputs[0]._initial_visibility = True |
|
all_tasks[0]._initial_visibility = True |
|
|