windmill-api 1.798.1

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * Windmill API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.798.1
 * Contact: contact@windmill.dev
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ScorerDefaults200Response {
    /// The system prompt a judge agent is created with.
    #[serde(rename = "judge_prompt")]
    pub judge_prompt: String,
    #[serde(rename = "script_template")]
    pub script_template: String,
}

impl ScorerDefaults200Response {
    pub fn new(judge_prompt: String, script_template: String) -> ScorerDefaults200Response {
        ScorerDefaults200Response {
            judge_prompt,
            script_template,
        }
    }
}