Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 1.81 KB

File metadata and controls

46 lines (40 loc) · 1.81 KB

LLMPulse::ProjectCreateRequest

Properties

Name Type Description Notes
website_url String Public HTTP(S) URL with a DNS hostname or public IP address. Credentials, private and special IP addresses, localhost and internal hostnames are rejected.
name String
main_country String
main_language String
brand_name String [optional]
description String [optional]
industry Array<String> [optional]
matching_names Array<String> [optional]
prompts Array<String> [optional]
competitors Array<ProjectCreateRequestCompetitorsInner> [optional]
owned_media ProjectCreateRequestOwnedMedia [optional]
use_subdomain Boolean [optional][default to false]
weekly_email_subscribed Boolean [optional][default to false]
external_identifier String Embed-enabled (Enterprise) accounts only; other accounts receive ERR_PLAN_REQUIRED. Idempotency key and embed-session join key, unique per account [optional]
execute_prompts_immediately Boolean [optional][default to true]

Example

require 'llmpulse'

instance = LLMPulse::ProjectCreateRequest.new(
  website_url: https://acme.com,
  name: Acme,
  main_country: US,
  main_language: en,
  brand_name: null,
  description: null,
  industry: [&quot;SAAS&quot;],
  matching_names: null,
  prompts: null,
  competitors: null,
  owned_media: null,
  use_subdomain: null,
  weekly_email_subscribed: null,
  external_identifier: null,
  execute_prompts_immediately: null
)