| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #
- # Copyright 2024 The InfiniFlow Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- from agent.component.fillup import UserFillUpParam, UserFillUp
-
-
- class BeginParam(UserFillUpParam):
-
- """
- Define the Begin component parameters.
- """
- def __init__(self):
- super().__init__()
- self.mode = "conversational"
- self.prologue = "Hi! I'm your smart assistant. What can I do for you?"
-
- def check(self):
- self.check_valid_value(self.mode, "The 'mode' should be either `conversational` or `task`", ["conversational", "task"])
-
- def get_input_form(self) -> dict[str, dict]:
- return getattr(self, "inputs")
-
-
- class Begin(UserFillUp):
- component_name = "Begin"
-
- def _invoke(self, **kwargs):
- for k, v in kwargs.get("inputs", {}).items():
- if isinstance(v, dict) and v.get("type", "").lower().find("file") >=0:
- if v.get("optional") and v.get("value", None) is None:
- v = None
- else:
- v = self._canvas.get_files([v["value"]])
- else:
- v = v.get("value")
- self.set_output(k, v)
- self.set_input_value(k, v)
-
- def thoughts(self) -> str:
- return ""
|