Skip to main content

GenerationOptions

Struct GenerationOptions 

Source
pub struct GenerationOptions {
    pub max_tokens: Option<u32>,
    pub temperature: Option<f32>,
    pub top_p: Option<f32>,
    pub top_k: Option<u32>,
    pub frequency_penalty: Option<f32>,
    pub presence_penalty: Option<f32>,
    pub stop: Option<Vec<String>>,
    pub seed: Option<u64>,
}
Expand description

Provider 无关的 LLM 生成参数。

所有字段均为 OptionNone 表示使用 provider/model 默认值。 支持多级合并:Request 级 > Agent 级 > Model 级 > Provider 默认。

§Examples

use katu_core::GenerationOptions;

let opts = GenerationOptions::new()
    .with_max_tokens(4096)
    .with_temperature(0.7);
assert_eq!(opts.max_tokens, Some(4096));
assert_eq!(opts.temperature, Some(0.7));

Fields§

§max_tokens: Option<u32>

最大输出 token 数

§temperature: Option<f32>

采样温度 (0.0 = 确定性, 2.0 = 最大随机)

§top_p: Option<f32>

Top-p (nucleus) 采样阈值

§top_k: Option<u32>

Top-k 采样(部分 provider 支持)

§frequency_penalty: Option<f32>

频率惩罚 (-2.0 ~ 2.0)

§presence_penalty: Option<f32>

存在惩罚 (-2.0 ~ 2.0)

§stop: Option<Vec<String>>

停止序列

§seed: Option<u64>

随机种子(可复现生成)

Implementations§

Source§

impl GenerationOptions

Source

pub fn new() -> Self

创建空的 GenerationOptions(所有字段为 None)。

Source

pub fn with_max_tokens(self, max_tokens: u32) -> Self

设置 max_tokens。

Source

pub fn with_temperature(self, temperature: f32) -> Self

设置 temperature。

Source

pub fn with_top_p(self, top_p: f32) -> Self

设置 top_p。

Source

pub fn with_top_k(self, top_k: u32) -> Self

设置 top_k。

Source

pub fn with_frequency_penalty(self, penalty: f32) -> Self

设置 frequency_penalty。

Source

pub fn with_presence_penalty(self, penalty: f32) -> Self

设置 presence_penalty。

Source

pub fn with_stop(self, stop: Vec<String>) -> Self

设置停止序列。

Source

pub fn with_seed(self, seed: u64) -> Self

设置随机种子。

Source

pub fn merge(&self, other: &GenerationOptions) -> GenerationOptions

合并两个 GenerationOptions,other 的非 None 值覆盖 self

用于实现参数合并链:Request > Agent > Model > Provider。

Trait Implementations§

Source§

impl Clone for GenerationOptions

Source§

fn clone(&self) -> GenerationOptions

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GenerationOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for GenerationOptions

Source§

fn default() -> GenerationOptions

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for GenerationOptions

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for GenerationOptions

Source§

fn eq(&self, other: &GenerationOptions) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for GenerationOptions

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for GenerationOptions

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,