Skip to content

Commit

Permalink
Remove description field from SystemDef & IntegrationDef
Browse files Browse the repository at this point in the history
  • Loading branch information
HamadaSalhab committed Oct 2, 2024
1 parent e2be3a6 commit 1c1cdf9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
16 changes: 0 additions & 16 deletions agents-api/agents_api/autogen/Tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,6 @@ class IntegrationDef(BaseModel):
"""
The specific method of the integration to call
"""
description: str | None = None
"""
Optional description of the integration
"""
setup: dict[str, Any] | None = None
"""
The setup parameters the integration accepts
Expand Down Expand Up @@ -271,10 +267,6 @@ class IntegrationDefUpdate(BaseModel):
"""
The specific method of the integration to call
"""
description: str | None = None
"""
Optional description of the integration
"""
setup: dict[str, Any] | None = None
"""
The setup parameters the integration accepts
Expand Down Expand Up @@ -346,10 +338,6 @@ class SystemDef(BaseModel):
"""
The name of the system call
"""
description: str | None = None
"""
Optional description of the system call
"""
arguments: dict[str, Any] | None = None
"""
The arguments to pre-apply to the system call
Expand All @@ -368,10 +356,6 @@ class SystemDefUpdate(BaseModel):
"""
The name of the system call
"""
description: str | None = None
"""
Optional description of the system call
"""
arguments: dict[str, Any] | None = None
"""
The arguments to pre-apply to the system call
Expand Down
6 changes: 0 additions & 6 deletions typespec/tools/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ model IntegrationDef {
/** The specific method of the integration to call */
method?: string;

/** Optional description of the integration */
description?: string;

/** The setup parameters the integration accepts */
setup?: FunctionParameters;

Expand All @@ -65,9 +62,6 @@ model SystemDef {
/** The name of the system call */
call: string;

/** Optional description of the system call */
description?: string;

/** The arguments to pre-apply to the system call */
arguments?: FunctionParameters;
}
Expand Down

0 comments on commit 1c1cdf9

Please sign in to comment.