-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Add AI Search related constants for the bug of AI search tool call info #44474
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -369,6 +369,7 @@ class ItemType(str, Enum, metaclass=CaseInsensitiveEnumMeta): | |
| WORKFLOW_ACTION = "workflow_action" | ||
| MEMORY_SEARCH_CALL = "memory_search_call" | ||
| OAUTH_CONSENT_REQUEST = "oauth_consent_request" | ||
| AZURE_AI_SEARCH_CALL = "azure_ai_search_call" | ||
|
|
||
|
|
||
| class LocationType(str, Enum, metaclass=CaseInsensitiveEnumMeta): | ||
|
|
@@ -733,6 +734,7 @@ class ToolType(str, Enum, metaclass=CaseInsensitiveEnumMeta): | |
| FABRIC_DATAAGENT_PREVIEW = "fabric_dataagent_preview" | ||
| SHAREPOINT_GROUNDING_PREVIEW = "sharepoint_grounding_preview" | ||
| AZURE_AI_SEARCH = "azure_ai_search" | ||
| REMOTE_TOOL = "remote_tool" # AI Search Remote Tool | ||
|
||
| OPENAPI = "openapi" | ||
| BING_CUSTOM_SEARCH_PREVIEW = "bing_custom_search_preview" | ||
| CAPTURE_STRUCTURED_OUTPUTS = "capture_structured_outputs" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR description checklist indicates that "CHANGELOG is updated for new features, bug fixes or other significant changes," but no changes to the CHANGELOG.md file are included in this PR. Adding new constants to public enums constitutes a feature addition that should be documented in the CHANGELOG with an entry under "Features Added" in the "2.0.0b3 (Unreleased)" section.