Class: Anthropic::Models::Beta::BetaManagedAgentsWebSearchToolConfigParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Anthropic::Models::Beta::BetaManagedAgentsWebSearchToolConfigParams
- Defined in:
- lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb,
sig/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rbs
Defined Under Namespace
Modules: PermissionPolicy, Type
Instance Attribute Summary collapse
-
#allowed_domains ⇒ Array<String>?
Only return search results whose host is one of these domains or a subdomain of one.
-
#blocked_domains ⇒ Array<String>?
Never return search results whose host is one of these domains or a subdomain of one.
-
#enabled ⇒ Boolean?
Whether this tool is enabled and available to Claude.
-
#name ⇒ Symbol, :web_search
Must be "web_search".
-
#permission_policy ⇒ Anthropic::Models::Beta::BetaManagedAgentsAlwaysAllowPolicy, ...
Permission policy for tool execution.
- #type ⇒ Symbol, ...
-
#user_location ⇒ Anthropic::Models::Beta::BetaManagedAgentsUserLocation?
Approximate user location for search result localization.
Instance Method Summary collapse
-
#initialize(allowed_domains: nil, blocked_domains: nil, enabled: nil, permission_policy: nil, type: nil, user_location: nil, name: :web_search) ⇒ Object
constructor
Configuration override for the web_search tool.
- #to_hash ⇒ {
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(allowed_domains: nil, blocked_domains: nil, enabled: nil, permission_policy: nil, type: nil, user_location: nil, name: :web_search) ⇒ Object
Configuration override for the web_search tool.
Some parameter documentations has been truncated, see Anthropic::Models::Beta::BetaManagedAgentsWebSearchToolConfigParams for more details.
|
|
# File 'lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb', line 57
|
Instance Attribute Details
#allowed_domains ⇒ Array<String>?
Only return search results whose host is one of these domains or a subdomain of one. Each entry is a plain hostname like "docs.example.com" (no scheme or port; an optional path suffix is accepted). At most 64 entries; an empty list is rejected (omit the field instead). Cannot be combined with blocked_domains.
20 |
# File 'lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb', line 20 optional :allowed_domains, Anthropic::Internal::Type::ArrayOf[String] |
#blocked_domains ⇒ Array<String>?
Never return search results whose host is one of these domains or a subdomain of one. Each entry is a plain hostname like "ads.example.com" (no scheme or port; an optional path suffix is accepted). At most 64 entries; an empty list is rejected (omit the field instead). Cannot be combined with allowed_domains.
29 |
# File 'lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb', line 29 optional :blocked_domains, Anthropic::Internal::Type::ArrayOf[String] |
#enabled ⇒ Boolean?
Whether this tool is enabled and available to Claude. Overrides the default_config setting.
36 |
# File 'lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb', line 36 optional :enabled, Anthropic::Internal::Type::Boolean, nil?: true |
#name ⇒ Symbol, :web_search
Must be "web_search".
11 |
# File 'lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb', line 11 required :name, const: :web_search |
#permission_policy ⇒ Anthropic::Models::Beta::BetaManagedAgentsAlwaysAllowPolicy, ...
Permission policy for tool execution.
42 43 44 |
# File 'lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb', line 42 optional :permission_policy, union: -> { Anthropic::Beta::BetaManagedAgentsWebSearchToolConfigParams::PermissionPolicy }, nil?: true |
#type ⇒ Symbol, ...
49 |
# File 'lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb', line 49 optional :type, enum: -> { Anthropic::Beta::BetaManagedAgentsWebSearchToolConfigParams::Type } |
#user_location ⇒ Anthropic::Models::Beta::BetaManagedAgentsUserLocation?
Approximate user location for search result localization.
55 |
# File 'lib/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rb', line 55 optional :user_location, -> { Anthropic::Beta::BetaManagedAgentsUserLocation }, nil?: true |
Instance Method Details
#to_hash ⇒ {
50 |
# File 'sig/anthropic/models/beta/beta_managed_agents_web_search_tool_config_params.rbs', line 50
def to_hash: -> {
|