TrieveRubyClient::CreateDatasetRequest

Properties

Name Type Description Notes
client_configuration Object Client configuration for the dataset, can be arbitrary JSON. We recommend setting to `{}` to start. See docs.trieve.ai for more information or adjust with the admin dashboard.
dataset_name String Name of the dataset.
organization_id String Organization ID that the dataset will belong to.
server_configuration Object Server configuration for the dataset, can be arbitrary JSON. We recommend setting to `{}` to start. See docs.trieve.ai for more information or adjust with the admin dashboard.
tracking_id String Optional tracking ID for the dataset. Can be used to track the dataset in external systems. Must be unique within the organization. [optional]

Example

require 'trieve_ruby_client'

instance = TrieveRubyClient::CreateDatasetRequest.new(
  client_configuration: null,
  dataset_name: null,
  organization_id: null,
  server_configuration: null,
  tracking_id: null
)