Skip to main content

ServerConfig

Struct ServerConfig 

Source
pub struct ServerConfig {
    pub bind: String,
    pub port: u16,
    pub gateway_url: String,
    pub gateway_key: Option<String>,
    pub model: String,
    pub seed_kb: bool,
    pub max_iterations: u32,
    pub max_tokens: u32,
    pub storage: StorageBackend,
    pub widget_auth_strict: bool,
    pub confirm_tools: Vec<String>,
}
Expand description

Fully-resolved server configuration.

Fields§

§bind: String

IP address to bind (127.0.0.1 for local dev, 0.0.0.0 in containers).

§port: u16

Port to bind.

§gateway_url: String

LLM gateway base URL.

§gateway_key: Option<String>

Optional gateway API key. None means LLM turns are unavailable and send_message returns a clean error.

§model: String

Model id.

§seed_kb: bool

Whether to seed the knowledge base with demo docs on startup.

§max_iterations: u32

Agent-loop iteration cap per turn.

§max_tokens: u32

max_tokens per LLM call.

§storage: StorageBackend

Storage backend (drives both the storage adapter and the matching durable admin stores). Defaults to StorageBackend::Memory.

§widget_auth_strict: bool

Fail-closed embeddable-widget auth: when true, a session for an agent the WidgetAuthProvider has no policy for is rejected (unknown/unregistered agents can’t be embedded). When false (default), an absent policy is allowed — so the permissive default provider leaves /ws open. Set WIDGET_AUTH_STRICT=1 in front of a real provider. Origin + authContext are always enforced for agents that do have a policy, regardless of this flag.

§confirm_tools: Vec<String>

Write-confirmation HITL: tool-name substrings that require human approval before the agent may run them. When non-empty, a turn that calls a matching tool parks and emits a confirm_tool_action_required event; the client resumes it with confirm_tool_action. Read from SMOOTH_AGENT_CONFIRM_TOOLS (comma-separated). Empty (the default) means no tool ever requires confirmation — no turn parks, byte-for-byte unchanged from before HITL. Matched by core’s ConfirmationHook (contains).

Implementations§

Source§

impl ServerConfig

Source

pub fn from_env() -> Self

Read configuration from the environment, applying documented defaults.

Source

pub fn confirmation_tool_patterns(&self) -> Option<Vec<String>>

The configured write-confirmation tool patterns, or None when none are configured (so the runner installs no ConfirmationHook and the turn behaves exactly as before HITL). Some only when at least one non-empty pattern is set.

Source

pub fn has_llm(&self) -> bool

true when a gateway key is present, so LLM turns can actually run.

Source

pub fn llm_config(&self) -> Option<LlmConfig>

Build the smooth-operator LlmConfig for live turns using the server’s configured (env) gateway key.

Returns None when no gateway key is configured (callers should emit a clean protocol error rather than attempting a turn).

In a multi-tenant flavor the per-turn key comes from a GatewayKeyResolver instead; use llm_config_with_key once the per-org key is resolved.

Source

pub fn llm_config_with_key(&self, key: String) -> LlmConfig

Build the smooth-operator LlmConfig for live turns with an explicit gateway key (gateway URL, model, and limits still come from this config).

This is the per-org seam’s entry point: a GatewayKeyResolver resolves the key for the turn’s org (falling back to the env key), and the resolved key is threaded through here. With the default env resolver this produces exactly the same config as llm_config.

Source

pub fn placeholder_llm_config(&self) -> LlmConfig

Build an LlmConfig without requiring a gateway key, for the test-only path where a MockLlmClient is injected (the scenario-parity corpus). The mock replaces the client built from this config, so its url/key/model are never used to make a network call — this just satisfies the engine’s LlmConfig argument so a keyless deterministic turn can run. Not reachable on the production path (only consulted when chat_provider is Some).

Trait Implementations§

Source§

impl Clone for ServerConfig

Source§

fn clone(&self) -> ServerConfig

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 ServerConfig

Source§

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

Formats the value using the given formatter. Read more

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

Source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
Source§

impl<L> LayerExt<L> for L

Source§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in Layered.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> State for T
where T: Clone + Send + Sync + 'static,

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more