Feat: add code agent component (#7672)

### What problem does this PR solve?

Add code agent component.
#4977
### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
Yongteng Lei
2025-05-16 10:27:47 +08:00
committed by GitHub
parent ae8b628f0a
commit 2777941b4e
2 changed files with 133 additions and 0 deletions

View File

@ -50,6 +50,7 @@ from .template import Template, TemplateParam
from .email import Email, EmailParam
from .iteration import Iteration, IterationParam
from .iterationitem import IterationItem, IterationItemParam
from .code import Code, CodeParam
def component_class(class_name):
@ -129,5 +130,7 @@ __all__ = [
"TemplateParam",
"Email",
"EmailParam",
"Code",
"CodeParam",
"component_class"
]