systemprompt_models/artifacts/image/
mod.rs1use crate::artifacts::metadata::ExecutionMetadata;
8use crate::artifacts::traits::Artifact;
9use crate::artifacts::types::ArtifactType;
10use crate::execution::context::RequestContext;
11use schemars::JsonSchema;
12use serde::{Deserialize, Serialize};
13use serde_json::{Value as JsonValue, json};
14use systemprompt_identifiers::SkillId;
15
16fn default_artifact_type() -> String {
17 "image".to_owned()
18}
19
20#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
21pub struct ImageArtifact {
22 #[serde(rename = "x-artifact-type")]
23 #[serde(default = "default_artifact_type")]
24 pub artifact_type: String,
25 pub src: String,
26 #[serde(skip_serializing_if = "Option::is_none")]
27 pub alt: Option<String>,
28 #[serde(skip_serializing_if = "Option::is_none")]
29 pub caption: Option<String>,
30 #[serde(skip_serializing_if = "Option::is_none")]
31 pub width: Option<u32>,
32 #[serde(skip_serializing_if = "Option::is_none")]
33 pub height: Option<u32>,
34 #[serde(skip)]
35 #[schemars(skip)]
36 metadata: ExecutionMetadata,
37}
38
39impl ImageArtifact {
40 pub const ARTIFACT_TYPE_STR: &'static str = "image";
41
42 pub fn new(src: impl Into<String>, ctx: &RequestContext) -> Self {
43 Self {
44 artifact_type: "image".to_owned(),
45 src: src.into(),
46 alt: None,
47 caption: None,
48 width: None,
49 height: None,
50 metadata: ExecutionMetadata::with_request(ctx),
51 }
52 }
53
54 pub fn with_alt(mut self, alt: impl Into<String>) -> Self {
55 self.alt = Some(alt.into());
56 self
57 }
58
59 pub fn with_caption(mut self, caption: impl Into<String>) -> Self {
60 self.caption = Some(caption.into());
61 self
62 }
63
64 pub const fn with_dimensions(mut self, width: u32, height: u32) -> Self {
65 self.width = Some(width);
66 self.height = Some(height);
67 self
68 }
69
70 pub fn with_execution_id(mut self, id: impl Into<String>) -> Self {
71 self.metadata.execution_id = Some(id.into());
72 self
73 }
74
75 pub fn with_skill(
76 mut self,
77 skill_id: impl Into<SkillId>,
78 skill_name: impl Into<String>,
79 ) -> Self {
80 self.metadata.skill_id = Some(skill_id.into());
81 self.metadata.skill_name = Some(skill_name.into());
82 self
83 }
84}
85
86impl Artifact for ImageArtifact {
87 fn artifact_type(&self) -> ArtifactType {
88 ArtifactType::Image
89 }
90
91 fn to_schema(&self) -> JsonValue {
92 json!({
93 "type": "object",
94 "properties": {
95 "src": {
96 "type": "string",
97 "description": "Image source URL or base64 data URI"
98 },
99 "alt": {
100 "type": "string",
101 "description": "Alt text for accessibility"
102 },
103 "caption": {
104 "type": "string",
105 "description": "Caption displayed below the image"
106 },
107 "width": {
108 "type": "integer",
109 "description": "Image width in pixels"
110 },
111 "height": {
112 "type": "integer",
113 "description": "Image height in pixels"
114 }
115 },
116 "required": ["src"],
117 "x-artifact-type": "image"
118 })
119 }
120}