@@ -443,13 +443,6 @@ class ToolRead(BaseModelWithConfigDict):
443
443
gateway_slug : str
444
444
original_name_slug : str
445
445
446
- # class Config(BaseModelWithConfigDict.Config):
447
- # """
448
- # A configuration class that inherits from BaseModelWithConfigDict.Config.
449
- # This class may be used to define specific configurations, extending
450
- # the base functionality of BaseModelWithConfigDict.
451
- # """
452
-
453
446
454
447
class ToolInvocation (BaseModelWithConfigDict ):
455
448
"""Schema for tool invocation requests.
@@ -577,20 +570,6 @@ class PromptArgument(BaseModelWithConfigDict):
577
570
schema_extra = {"example" : {"name" : "language" , "description" : "Programming language" , "required" : True }}
578
571
)
579
572
580
- # class Config(BaseModelWithConfigDict.Config):
581
- # """
582
- # A configuration class that inherits from BaseModelWithConfigDict.Config.
583
-
584
- # This class defines an example schema for configuration, which includes:
585
- # - 'name': A string representing the name of the configuration (e.g., "language").
586
- # - 'description': A brief description of the configuration (e.g., "Programming language").
587
- # - 'required': A boolean indicating if the configuration is mandatory (e.g., True).
588
-
589
- # The `schema_extra` attribute provides an example of how the configuration should be structured.
590
- # """
591
-
592
- # schema_extra = {"example": {"name": "language", "description": "Programming language", "required": True}}
593
-
594
573
595
574
class PromptCreate (BaseModelWithConfigDict ):
596
575
"""Schema for creating a new prompt template.
0 commit comments