Files
GenAIExamples/WorkflowExecAgent/tools/components/component.py
JoshuaL3000 bf5c391e47 Add Workflow Executor Example (#892)
Signed-off-by: JoshuaL3000 <joshua.jian.ern.liew@intel.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2024-10-31 20:50:20 -05:00

11 lines
298 B
Python

# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
class Component:
def __init__(self, request_handler):
self.request_handler = request_handler
def _make_request(self, *args, **kwargs):
return self.request_handler._make_request(*args, **kwargs)