enum

OpenAI::MCPToolConnectorId

Inherits Enum < Comparable < Value < Object

Identifier for service connectors, like those available in ChatGPT. One of server_url or connector_id must be provided. Learn more about service connectors here.

Currently supported connector_id values are:

  • Dropbox: connector_dropbox
  • Gmail: connector_gmail
  • Google Calendar: connector_googlecalendar
  • Google Drive: connector_googledrive
  • Microsoft Teams: connector_microsoftteams
  • Outlook Calendar: connector_outlookcalendar
  • Outlook Email: connector_outlookemail
  • SharePoint: connector_sharepoint

Constants

ConnectorDropbox = 0
ConnectorGmail = 1
ConnectorGooglecalendar = 2
ConnectorGoogledrive = 3
ConnectorMicrosoftteams = 4
ConnectorOutlookcalendar = 5
ConnectorOutlookemail = 6
ConnectorSharepoint = 7

Constructors

new(pull : JSON::PullParser) : self
Source

Instance methods

connector_dropbox?

Returns true if this enum value equals ConnectorDropbox

Source
connector_gmail?

Returns true if this enum value equals ConnectorGmail

Source
connector_googlecalendar?

Returns true if this enum value equals ConnectorGooglecalendar

Source
connector_googledrive?

Returns true if this enum value equals ConnectorGoogledrive

Source
connector_microsoftteams?

Returns true if this enum value equals ConnectorMicrosoftteams

Source
connector_outlookcalendar?

Returns true if this enum value equals ConnectorOutlookcalendar

Source
connector_outlookemail?

Returns true if this enum value equals ConnectorOutlookemail

Source
connector_sharepoint?

Returns true if this enum value equals ConnectorSharepoint

Source
to_json(json : JSON::Builder) : Nil

Serializes this enum member by name.

For non-flags enums, the serialization is a JSON string. The value is the member name (see #to_s) transformed with String#underscore.

enum Stages
  INITIAL
  SECOND_STAGE
end

Stages::INITIAL.to_json      # => %("initial")
Stages::SECOND_STAGE.to_json # => %("second_stage")

For flags enums, the serialization is a JSON array including every flagged member individually serialized in the same way as a member of a non-flags enum. None is serialized as an empty array, All as an array containing all members.

@[Flags]
enum Sides
  LEFT
  RIGHT
end

Sides::LEFT.to_json                  # => %(["left"])
(Sides::LEFT | Sides::RIGHT).to_json # => %(["left","right"])
Sides::All.to_json                   # => %(["left","right"])
Sides::None.to_json                  # => %([])

ValueConverter.to_json offers a different serialization strategy based on the member value.

Source