MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / model

Method model

atomic-core/src/change/provenance/builder.rs:49–52  ·  view source on GitHub ↗

Set the model identifier.

(mut self, model: impl Into<String>)

Source from the content-addressed store, hash-verified

47
48 /// Set the model identifier.
49 pub fn model(mut self, model: impl Into<String>) -> Self {
50 self.model = Some(model.into());
51 self
52 }
53
54 /// Set the model version.
55 pub fn model_version(mut self, version: impl Into<String>) -> Self {

Calls

no outgoing calls