1. Packages
  2. DataRobot
  3. API Docs
  4. LlmBlueprint
DataRobot v0.8.17 published on Tuesday, Mar 25, 2025 by DataRobot, Inc.

datarobot.LlmBlueprint

Explore with Pulumi AI

datarobot logo
DataRobot v0.8.17 published on Tuesday, Mar 25, 2025 by DataRobot, Inc.

    LLMBlueprint

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datarobot.UseCase;
    import com.pulumi.datarobot.Playground;
    import com.pulumi.datarobot.PlaygroundArgs;
    import com.pulumi.datarobot.LlmBlueprint;
    import com.pulumi.datarobot.LlmBlueprintArgs;
    import com.pulumi.datarobot.inputs.LlmBlueprintLlmSettingsArgs;
    import com.pulumi.datarobot.inputs.LlmBlueprintCustomModelLlmSettingsArgs;
    import com.pulumi.datarobot.inputs.LlmBlueprintVectorDatabaseSettingsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var exampleUseCase = new UseCase("exampleUseCase");
    
            var examplePlayground = new Playground("examplePlayground", PlaygroundArgs.builder()
                .description("Description for the example playground")
                .useCaseId(exampleUseCase.id())
                .build());
    
            var exampleLlmBlueprint = new LlmBlueprint("exampleLlmBlueprint", LlmBlueprintArgs.builder()
                .description("Description for the example LLM blueprint")
                .playgroundId(examplePlayground.id())
                .llmId("azure-openai-gpt-3.5-turbo")
                .promptType("ONE_TIME_PROMPT")
                .llmSettings(LlmBlueprintLlmSettingsArgs.builder()
                    .max_completion_length(1000)
                    .temperature(0.5)
                    .top_p(0.9)
                    .system_prompt("My Prompt:")
                    .build())
                .customModelLlmSettings(LlmBlueprintCustomModelLlmSettingsArgs.builder()
                    .external_llm_context_size(100)
                    .system_prompt("My Prompt:")
                    .validation_id("111111111111")
                    .build())
                .vectorDatabaseSettings(LlmBlueprintVectorDatabaseSettingsArgs.builder()
                    .max_documents_retrieved_per_prompt(5)
                    .max_tokens(1000)
                    .build())
                .build());
    
            ctx.export("exampleId", exampleLlmBlueprint.id());
        }
    }
    
    resources:
      exampleUseCase:
        type: datarobot:UseCase
      examplePlayground:
        type: datarobot:Playground
        properties:
          description: Description for the example playground
          useCaseId: ${exampleUseCase.id}
      exampleLlmBlueprint:
        type: datarobot:LlmBlueprint
        properties:
          description: Description for the example LLM blueprint
          playgroundId: ${examplePlayground.id}
          llmId: azure-openai-gpt-3.5-turbo
          promptType: ONE_TIME_PROMPT
          # Optional
          llmSettings:
            max_completion_length: 1000
            temperature: 0.5
            top_p: 0.9
            system_prompt: 'My Prompt:'
          customModelLlmSettings:
            external_llm_context_size: 100
            system_prompt: 'My Prompt:'
            validation_id: '111111111111'
          vectorDatabaseSettings:
            max_documents_retrieved_per_prompt: 5
            max_tokens: 1000
    outputs:
      exampleId: ${exampleLlmBlueprint.id}
    

    Create LlmBlueprint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new LlmBlueprint(name: string, args: LlmBlueprintArgs, opts?: CustomResourceOptions);
    @overload
    def LlmBlueprint(resource_name: str,
                     args: LlmBlueprintArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def LlmBlueprint(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     playground_id: Optional[str] = None,
                     custom_model_llm_settings: Optional[LlmBlueprintCustomModelLlmSettingsArgs] = None,
                     description: Optional[str] = None,
                     llm_id: Optional[str] = None,
                     llm_settings: Optional[LlmBlueprintLlmSettingsArgs] = None,
                     name: Optional[str] = None,
                     prompt_type: Optional[str] = None,
                     vector_database_id: Optional[str] = None,
                     vector_database_settings: Optional[LlmBlueprintVectorDatabaseSettingsArgs] = None)
    func NewLlmBlueprint(ctx *Context, name string, args LlmBlueprintArgs, opts ...ResourceOption) (*LlmBlueprint, error)
    public LlmBlueprint(string name, LlmBlueprintArgs args, CustomResourceOptions? opts = null)
    public LlmBlueprint(String name, LlmBlueprintArgs args)
    public LlmBlueprint(String name, LlmBlueprintArgs args, CustomResourceOptions options)
    
    type: datarobot:LlmBlueprint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args LlmBlueprintArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args LlmBlueprintArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args LlmBlueprintArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LlmBlueprintArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LlmBlueprintArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var llmBlueprintResource = new Datarobot.LlmBlueprint("llmBlueprintResource", new()
    {
        PlaygroundId = "string",
        CustomModelLlmSettings = new Datarobot.Inputs.LlmBlueprintCustomModelLlmSettingsArgs
        {
            ExternalLlmContextSize = 0,
            SystemPrompt = "string",
            ValidationId = "string",
        },
        Description = "string",
        LlmId = "string",
        LlmSettings = new Datarobot.Inputs.LlmBlueprintLlmSettingsArgs
        {
            MaxCompletionLength = 0,
            SystemPrompt = "string",
            Temperature = 0,
            TopP = 0,
        },
        Name = "string",
        PromptType = "string",
        VectorDatabaseId = "string",
        VectorDatabaseSettings = new Datarobot.Inputs.LlmBlueprintVectorDatabaseSettingsArgs
        {
            MaxDocumentsRetrievedPerPrompt = 0,
            MaxTokens = 0,
        },
    });
    
    example, err := datarobot.NewLlmBlueprint(ctx, "llmBlueprintResource", &datarobot.LlmBlueprintArgs{
    	PlaygroundId: pulumi.String("string"),
    	CustomModelLlmSettings: &datarobot.LlmBlueprintCustomModelLlmSettingsArgs{
    		ExternalLlmContextSize: pulumi.Int(0),
    		SystemPrompt:           pulumi.String("string"),
    		ValidationId:           pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	LlmId:       pulumi.String("string"),
    	LlmSettings: &datarobot.LlmBlueprintLlmSettingsArgs{
    		MaxCompletionLength: pulumi.Int(0),
    		SystemPrompt:        pulumi.String("string"),
    		Temperature:         pulumi.Float64(0),
    		TopP:                pulumi.Float64(0),
    	},
    	Name:             pulumi.String("string"),
    	PromptType:       pulumi.String("string"),
    	VectorDatabaseId: pulumi.String("string"),
    	VectorDatabaseSettings: &datarobot.LlmBlueprintVectorDatabaseSettingsArgs{
    		MaxDocumentsRetrievedPerPrompt: pulumi.Int(0),
    		MaxTokens:                      pulumi.Int(0),
    	},
    })
    
    var llmBlueprintResource = new LlmBlueprint("llmBlueprintResource", LlmBlueprintArgs.builder()
        .playgroundId("string")
        .customModelLlmSettings(LlmBlueprintCustomModelLlmSettingsArgs.builder()
            .externalLlmContextSize(0)
            .systemPrompt("string")
            .validationId("string")
            .build())
        .description("string")
        .llmId("string")
        .llmSettings(LlmBlueprintLlmSettingsArgs.builder()
            .maxCompletionLength(0)
            .systemPrompt("string")
            .temperature(0)
            .topP(0)
            .build())
        .name("string")
        .promptType("string")
        .vectorDatabaseId("string")
        .vectorDatabaseSettings(LlmBlueprintVectorDatabaseSettingsArgs.builder()
            .maxDocumentsRetrievedPerPrompt(0)
            .maxTokens(0)
            .build())
        .build());
    
    llm_blueprint_resource = datarobot.LlmBlueprint("llmBlueprintResource",
        playground_id="string",
        custom_model_llm_settings={
            "external_llm_context_size": 0,
            "system_prompt": "string",
            "validation_id": "string",
        },
        description="string",
        llm_id="string",
        llm_settings={
            "max_completion_length": 0,
            "system_prompt": "string",
            "temperature": 0,
            "top_p": 0,
        },
        name="string",
        prompt_type="string",
        vector_database_id="string",
        vector_database_settings={
            "max_documents_retrieved_per_prompt": 0,
            "max_tokens": 0,
        })
    
    const llmBlueprintResource = new datarobot.LlmBlueprint("llmBlueprintResource", {
        playgroundId: "string",
        customModelLlmSettings: {
            externalLlmContextSize: 0,
            systemPrompt: "string",
            validationId: "string",
        },
        description: "string",
        llmId: "string",
        llmSettings: {
            maxCompletionLength: 0,
            systemPrompt: "string",
            temperature: 0,
            topP: 0,
        },
        name: "string",
        promptType: "string",
        vectorDatabaseId: "string",
        vectorDatabaseSettings: {
            maxDocumentsRetrievedPerPrompt: 0,
            maxTokens: 0,
        },
    });
    
    type: datarobot:LlmBlueprint
    properties:
        customModelLlmSettings:
            externalLlmContextSize: 0
            systemPrompt: string
            validationId: string
        description: string
        llmId: string
        llmSettings:
            maxCompletionLength: 0
            systemPrompt: string
            temperature: 0
            topP: 0
        name: string
        playgroundId: string
        promptType: string
        vectorDatabaseId: string
        vectorDatabaseSettings:
            maxDocumentsRetrievedPerPrompt: 0
            maxTokens: 0
    

    LlmBlueprint Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The LlmBlueprint resource accepts the following input properties:

    PlaygroundId string
    The id of the Playground for the LLM Blueprint.
    CustomModelLlmSettings DataRobotLlmBlueprintCustomModelLlmSettings
    The custom model LLM settings for the LLM Blueprint.
    Description string
    The description of the LLM Blueprint.
    LlmId string
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    LlmSettings DataRobotLlmBlueprintLlmSettings
    The LLM settings for the LLM Blueprint.
    Name string
    The name of the LLM Blueprint.
    PromptType string
    The prompt type for the LLM Blueprint.
    VectorDatabaseId string
    The id of the Vector Database for the LLM Blueprint.
    VectorDatabaseSettings DataRobotLlmBlueprintVectorDatabaseSettings
    The Vector Database settings for the LLM Blueprint.
    PlaygroundId string
    The id of the Playground for the LLM Blueprint.
    CustomModelLlmSettings LlmBlueprintCustomModelLlmSettingsArgs
    The custom model LLM settings for the LLM Blueprint.
    Description string
    The description of the LLM Blueprint.
    LlmId string
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    LlmSettings LlmBlueprintLlmSettingsArgs
    The LLM settings for the LLM Blueprint.
    Name string
    The name of the LLM Blueprint.
    PromptType string
    The prompt type for the LLM Blueprint.
    VectorDatabaseId string
    The id of the Vector Database for the LLM Blueprint.
    VectorDatabaseSettings LlmBlueprintVectorDatabaseSettingsArgs
    The Vector Database settings for the LLM Blueprint.
    playgroundId String
    The id of the Playground for the LLM Blueprint.
    customModelLlmSettings LlmBlueprintCustomModelLlmSettings
    The custom model LLM settings for the LLM Blueprint.
    description String
    The description of the LLM Blueprint.
    llmId String
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    llmSettings LlmBlueprintLlmSettings
    The LLM settings for the LLM Blueprint.
    name String
    The name of the LLM Blueprint.
    promptType String
    The prompt type for the LLM Blueprint.
    vectorDatabaseId String
    The id of the Vector Database for the LLM Blueprint.
    vectorDatabaseSettings LlmBlueprintVectorDatabaseSettings
    The Vector Database settings for the LLM Blueprint.
    playgroundId string
    The id of the Playground for the LLM Blueprint.
    customModelLlmSettings LlmBlueprintCustomModelLlmSettings
    The custom model LLM settings for the LLM Blueprint.
    description string
    The description of the LLM Blueprint.
    llmId string
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    llmSettings LlmBlueprintLlmSettings
    The LLM settings for the LLM Blueprint.
    name string
    The name of the LLM Blueprint.
    promptType string
    The prompt type for the LLM Blueprint.
    vectorDatabaseId string
    The id of the Vector Database for the LLM Blueprint.
    vectorDatabaseSettings LlmBlueprintVectorDatabaseSettings
    The Vector Database settings for the LLM Blueprint.
    playground_id str
    The id of the Playground for the LLM Blueprint.
    custom_model_llm_settings LlmBlueprintCustomModelLlmSettingsArgs
    The custom model LLM settings for the LLM Blueprint.
    description str
    The description of the LLM Blueprint.
    llm_id str
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    llm_settings LlmBlueprintLlmSettingsArgs
    The LLM settings for the LLM Blueprint.
    name str
    The name of the LLM Blueprint.
    prompt_type str
    The prompt type for the LLM Blueprint.
    vector_database_id str
    The id of the Vector Database for the LLM Blueprint.
    vector_database_settings LlmBlueprintVectorDatabaseSettingsArgs
    The Vector Database settings for the LLM Blueprint.
    playgroundId String
    The id of the Playground for the LLM Blueprint.
    customModelLlmSettings Property Map
    The custom model LLM settings for the LLM Blueprint.
    description String
    The description of the LLM Blueprint.
    llmId String
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    llmSettings Property Map
    The LLM settings for the LLM Blueprint.
    name String
    The name of the LLM Blueprint.
    promptType String
    The prompt type for the LLM Blueprint.
    vectorDatabaseId String
    The id of the Vector Database for the LLM Blueprint.
    vectorDatabaseSettings Property Map
    The Vector Database settings for the LLM Blueprint.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LlmBlueprint resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing LlmBlueprint Resource

    Get an existing LlmBlueprint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: LlmBlueprintState, opts?: CustomResourceOptions): LlmBlueprint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            custom_model_llm_settings: Optional[LlmBlueprintCustomModelLlmSettingsArgs] = None,
            description: Optional[str] = None,
            llm_id: Optional[str] = None,
            llm_settings: Optional[LlmBlueprintLlmSettingsArgs] = None,
            name: Optional[str] = None,
            playground_id: Optional[str] = None,
            prompt_type: Optional[str] = None,
            vector_database_id: Optional[str] = None,
            vector_database_settings: Optional[LlmBlueprintVectorDatabaseSettingsArgs] = None) -> LlmBlueprint
    func GetLlmBlueprint(ctx *Context, name string, id IDInput, state *LlmBlueprintState, opts ...ResourceOption) (*LlmBlueprint, error)
    public static LlmBlueprint Get(string name, Input<string> id, LlmBlueprintState? state, CustomResourceOptions? opts = null)
    public static LlmBlueprint get(String name, Output<String> id, LlmBlueprintState state, CustomResourceOptions options)
    resources:  _:    type: datarobot:LlmBlueprint    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CustomModelLlmSettings DataRobotLlmBlueprintCustomModelLlmSettings
    The custom model LLM settings for the LLM Blueprint.
    Description string
    The description of the LLM Blueprint.
    LlmId string
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    LlmSettings DataRobotLlmBlueprintLlmSettings
    The LLM settings for the LLM Blueprint.
    Name string
    The name of the LLM Blueprint.
    PlaygroundId string
    The id of the Playground for the LLM Blueprint.
    PromptType string
    The prompt type for the LLM Blueprint.
    VectorDatabaseId string
    The id of the Vector Database for the LLM Blueprint.
    VectorDatabaseSettings DataRobotLlmBlueprintVectorDatabaseSettings
    The Vector Database settings for the LLM Blueprint.
    CustomModelLlmSettings LlmBlueprintCustomModelLlmSettingsArgs
    The custom model LLM settings for the LLM Blueprint.
    Description string
    The description of the LLM Blueprint.
    LlmId string
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    LlmSettings LlmBlueprintLlmSettingsArgs
    The LLM settings for the LLM Blueprint.
    Name string
    The name of the LLM Blueprint.
    PlaygroundId string
    The id of the Playground for the LLM Blueprint.
    PromptType string
    The prompt type for the LLM Blueprint.
    VectorDatabaseId string
    The id of the Vector Database for the LLM Blueprint.
    VectorDatabaseSettings LlmBlueprintVectorDatabaseSettingsArgs
    The Vector Database settings for the LLM Blueprint.
    customModelLlmSettings LlmBlueprintCustomModelLlmSettings
    The custom model LLM settings for the LLM Blueprint.
    description String
    The description of the LLM Blueprint.
    llmId String
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    llmSettings LlmBlueprintLlmSettings
    The LLM settings for the LLM Blueprint.
    name String
    The name of the LLM Blueprint.
    playgroundId String
    The id of the Playground for the LLM Blueprint.
    promptType String
    The prompt type for the LLM Blueprint.
    vectorDatabaseId String
    The id of the Vector Database for the LLM Blueprint.
    vectorDatabaseSettings LlmBlueprintVectorDatabaseSettings
    The Vector Database settings for the LLM Blueprint.
    customModelLlmSettings LlmBlueprintCustomModelLlmSettings
    The custom model LLM settings for the LLM Blueprint.
    description string
    The description of the LLM Blueprint.
    llmId string
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    llmSettings LlmBlueprintLlmSettings
    The LLM settings for the LLM Blueprint.
    name string
    The name of the LLM Blueprint.
    playgroundId string
    The id of the Playground for the LLM Blueprint.
    promptType string
    The prompt type for the LLM Blueprint.
    vectorDatabaseId string
    The id of the Vector Database for the LLM Blueprint.
    vectorDatabaseSettings LlmBlueprintVectorDatabaseSettings
    The Vector Database settings for the LLM Blueprint.
    custom_model_llm_settings LlmBlueprintCustomModelLlmSettingsArgs
    The custom model LLM settings for the LLM Blueprint.
    description str
    The description of the LLM Blueprint.
    llm_id str
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    llm_settings LlmBlueprintLlmSettingsArgs
    The LLM settings for the LLM Blueprint.
    name str
    The name of the LLM Blueprint.
    playground_id str
    The id of the Playground for the LLM Blueprint.
    prompt_type str
    The prompt type for the LLM Blueprint.
    vector_database_id str
    The id of the Vector Database for the LLM Blueprint.
    vector_database_settings LlmBlueprintVectorDatabaseSettingsArgs
    The Vector Database settings for the LLM Blueprint.
    customModelLlmSettings Property Map
    The custom model LLM settings for the LLM Blueprint.
    description String
    The description of the LLM Blueprint.
    llmId String
    The id of the LLM for the LLM Blueprint. If custommodelllm_settings is set, this value must be 'custom-model'.
    llmSettings Property Map
    The LLM settings for the LLM Blueprint.
    name String
    The name of the LLM Blueprint.
    playgroundId String
    The id of the Playground for the LLM Blueprint.
    promptType String
    The prompt type for the LLM Blueprint.
    vectorDatabaseId String
    The id of the Vector Database for the LLM Blueprint.
    vectorDatabaseSettings Property Map
    The Vector Database settings for the LLM Blueprint.

    Supporting Types

    LlmBlueprintCustomModelLlmSettings, LlmBlueprintCustomModelLlmSettingsArgs

    ExternalLlmContextSize int
    The external LLM's context size, in tokens. This value is only used for pruning documents supplied to the LLM when a vector database is associated with the LLM blueprint. It does not affect the external LLM's actual context size in any way and is not supplied to the LLM.
    SystemPrompt string
    System prompt guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    ValidationId string
    The validation ID of the custom model LLM.
    ExternalLlmContextSize int
    The external LLM's context size, in tokens. This value is only used for pruning documents supplied to the LLM when a vector database is associated with the LLM blueprint. It does not affect the external LLM's actual context size in any way and is not supplied to the LLM.
    SystemPrompt string
    System prompt guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    ValidationId string
    The validation ID of the custom model LLM.
    externalLlmContextSize Integer
    The external LLM's context size, in tokens. This value is only used for pruning documents supplied to the LLM when a vector database is associated with the LLM blueprint. It does not affect the external LLM's actual context size in any way and is not supplied to the LLM.
    systemPrompt String
    System prompt guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    validationId String
    The validation ID of the custom model LLM.
    externalLlmContextSize number
    The external LLM's context size, in tokens. This value is only used for pruning documents supplied to the LLM when a vector database is associated with the LLM blueprint. It does not affect the external LLM's actual context size in any way and is not supplied to the LLM.
    systemPrompt string
    System prompt guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    validationId string
    The validation ID of the custom model LLM.
    external_llm_context_size int
    The external LLM's context size, in tokens. This value is only used for pruning documents supplied to the LLM when a vector database is associated with the LLM blueprint. It does not affect the external LLM's actual context size in any way and is not supplied to the LLM.
    system_prompt str
    System prompt guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    validation_id str
    The validation ID of the custom model LLM.
    externalLlmContextSize Number
    The external LLM's context size, in tokens. This value is only used for pruning documents supplied to the LLM when a vector database is associated with the LLM blueprint. It does not affect the external LLM's actual context size in any way and is not supplied to the LLM.
    systemPrompt String
    System prompt guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    validationId String
    The validation ID of the custom model LLM.

    LlmBlueprintLlmSettings, LlmBlueprintLlmSettingsArgs

    MaxCompletionLength int
    The maximum number of tokens allowed in the completion. The combined count of this value and prompt tokens must be below the model's maximum context size, where prompt token count is comprised of system prompt, user prompt, recent chat history, and vector database citations.
    SystemPrompt string
    Guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    Temperature double
    Controls the randomness of model output, where higher values return more diverse output and lower values return more deterministic results.
    TopP double
    Threshold that controls the selection of words included in the response, based on a cumulative probability cutoff for token selection. Higher numbers return more diverse options for outputs.
    MaxCompletionLength int
    The maximum number of tokens allowed in the completion. The combined count of this value and prompt tokens must be below the model's maximum context size, where prompt token count is comprised of system prompt, user prompt, recent chat history, and vector database citations.
    SystemPrompt string
    Guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    Temperature float64
    Controls the randomness of model output, where higher values return more diverse output and lower values return more deterministic results.
    TopP float64
    Threshold that controls the selection of words included in the response, based on a cumulative probability cutoff for token selection. Higher numbers return more diverse options for outputs.
    maxCompletionLength Integer
    The maximum number of tokens allowed in the completion. The combined count of this value and prompt tokens must be below the model's maximum context size, where prompt token count is comprised of system prompt, user prompt, recent chat history, and vector database citations.
    systemPrompt String
    Guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    temperature Double
    Controls the randomness of model output, where higher values return more diverse output and lower values return more deterministic results.
    topP Double
    Threshold that controls the selection of words included in the response, based on a cumulative probability cutoff for token selection. Higher numbers return more diverse options for outputs.
    maxCompletionLength number
    The maximum number of tokens allowed in the completion. The combined count of this value and prompt tokens must be below the model's maximum context size, where prompt token count is comprised of system prompt, user prompt, recent chat history, and vector database citations.
    systemPrompt string
    Guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    temperature number
    Controls the randomness of model output, where higher values return more diverse output and lower values return more deterministic results.
    topP number
    Threshold that controls the selection of words included in the response, based on a cumulative probability cutoff for token selection. Higher numbers return more diverse options for outputs.
    max_completion_length int
    The maximum number of tokens allowed in the completion. The combined count of this value and prompt tokens must be below the model's maximum context size, where prompt token count is comprised of system prompt, user prompt, recent chat history, and vector database citations.
    system_prompt str
    Guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    temperature float
    Controls the randomness of model output, where higher values return more diverse output and lower values return more deterministic results.
    top_p float
    Threshold that controls the selection of words included in the response, based on a cumulative probability cutoff for token selection. Higher numbers return more diverse options for outputs.
    maxCompletionLength Number
    The maximum number of tokens allowed in the completion. The combined count of this value and prompt tokens must be below the model's maximum context size, where prompt token count is comprised of system prompt, user prompt, recent chat history, and vector database citations.
    systemPrompt String
    Guides the style of the LLM response. It is a 'universal' prompt, prepended to all individual prompts.
    temperature Number
    Controls the randomness of model output, where higher values return more diverse output and lower values return more deterministic results.
    topP Number
    Threshold that controls the selection of words included in the response, based on a cumulative probability cutoff for token selection. Higher numbers return more diverse options for outputs.

    LlmBlueprintVectorDatabaseSettings, LlmBlueprintVectorDatabaseSettingsArgs

    MaxDocumentsRetrievedPerPrompt int
    The maximum number of documents to retrieve from the Vector Database.
    MaxTokens int
    The maximum number of tokens to retrieve from the Vector Database.
    MaxDocumentsRetrievedPerPrompt int
    The maximum number of documents to retrieve from the Vector Database.
    MaxTokens int
    The maximum number of tokens to retrieve from the Vector Database.
    maxDocumentsRetrievedPerPrompt Integer
    The maximum number of documents to retrieve from the Vector Database.
    maxTokens Integer
    The maximum number of tokens to retrieve from the Vector Database.
    maxDocumentsRetrievedPerPrompt number
    The maximum number of documents to retrieve from the Vector Database.
    maxTokens number
    The maximum number of tokens to retrieve from the Vector Database.
    max_documents_retrieved_per_prompt int
    The maximum number of documents to retrieve from the Vector Database.
    max_tokens int
    The maximum number of tokens to retrieve from the Vector Database.
    maxDocumentsRetrievedPerPrompt Number
    The maximum number of documents to retrieve from the Vector Database.
    maxTokens Number
    The maximum number of tokens to retrieve from the Vector Database.

    Package Details

    Repository
    datarobot datarobot-community/pulumi-datarobot
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datarobot Terraform Provider.
    datarobot logo
    DataRobot v0.8.17 published on Tuesday, Mar 25, 2025 by DataRobot, Inc.