generated from nhcarrigan/template
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
0903033180
|
|||
|
ef7f74a919
|
|||
|
42b4958c2a
|
|||
| 662d6119fa | |||
|
2bcc91183c
|
@@ -18,6 +18,11 @@ jobs:
|
|||||||
|
|
||||||
- name: Check dependency pins
|
- name: Check dependency pins
|
||||||
uses: naomi-lgbt/dependency-pin-check@main
|
uses: naomi-lgbt/dependency-pin-check@main
|
||||||
|
with:
|
||||||
|
language: javascript
|
||||||
|
dev-dependencies: true
|
||||||
|
peer-dependencies: true
|
||||||
|
optional-dependencies: true
|
||||||
|
|
||||||
- name: Install Linux dependencies
|
- name: Install Linux dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 155 KiB After Width: | Height: | Size: 364 KiB |
+12
-8
@@ -83,22 +83,26 @@ fn build_user_gemini_parts(
|
|||||||
user_image_base64: &Option<String>,
|
user_image_base64: &Option<String>,
|
||||||
user_image_mime: &Option<String>,
|
user_image_mime: &Option<String>,
|
||||||
) -> Vec<Value> {
|
) -> Vec<Value> {
|
||||||
if mode == "replace" && user_image_base64.is_some() {
|
if let Some(image_data) = user_image_base64.as_deref() {
|
||||||
let mime = user_image_mime.as_deref().unwrap_or("image/png");
|
let mime = user_image_mime.as_deref().unwrap_or("image/png");
|
||||||
let data = user_image_base64.as_deref().unwrap_or("");
|
|
||||||
let base_text = user_text.as_deref().unwrap_or("");
|
let base_text = user_text.as_deref().unwrap_or("");
|
||||||
let final_text = if base_text.is_empty() {
|
let final_text = if mode == "replace" {
|
||||||
|
if base_text.is_empty() {
|
||||||
REPLACE_MODE_APPEND.to_string()
|
REPLACE_MODE_APPEND.to_string()
|
||||||
} else {
|
} else {
|
||||||
format!("{}\n{}", base_text, REPLACE_MODE_APPEND)
|
format!("{}\n{}", base_text, REPLACE_MODE_APPEND)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
base_text.to_string()
|
||||||
};
|
};
|
||||||
|
|
||||||
vec![
|
let mut parts = vec![json!({"inlineData": {"mimeType": mime, "data": image_data}})];
|
||||||
json!({"inlineData": {"mimeType": mime, "data": data}}),
|
if !final_text.is_empty() {
|
||||||
json!({"text": final_text}),
|
parts.push(json!({"text": final_text}));
|
||||||
]
|
}
|
||||||
|
parts
|
||||||
} else {
|
} else {
|
||||||
// Art/avatar mode, or replace mode follow-up correction (text only)
|
// No image: text-only message
|
||||||
let text = user_text.as_deref().unwrap_or("");
|
let text = user_text.as_deref().unwrap_or("");
|
||||||
vec![json!({"text": text})]
|
vec![json!({"text": text})]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -256,7 +256,8 @@ const inputArea = ({
|
|||||||
if (isInitialReplace && imageBase64 === undefined) {
|
if (isInitialReplace && imageBase64 === undefined) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!isInitialReplace && text.trim().length === 0) {
|
const hasContent = text.trim().length > 0 || imageBase64 !== undefined;
|
||||||
|
if (!isInitialReplace && !hasContent) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -332,6 +333,9 @@ const inputArea = ({
|
|||||||
: dropZoneInactiveClass,
|
: dropZoneInactiveClass,
|
||||||
].join(" ");
|
].join(" ");
|
||||||
|
|
||||||
|
const hasNoContent = text.trim().length === 0 && imageBase64 === undefined;
|
||||||
|
const isSendDisabled = isLoading || hasNoContent;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="border-t border-purple-900/30 p-4 bg-[#0f0a1a]">
|
<div className="border-t border-purple-900/30 p-4 bg-[#0f0a1a]">
|
||||||
<div className="flex items-center gap-2 mb-2">
|
<div className="flex items-center gap-2 mb-2">
|
||||||
@@ -397,6 +401,15 @@ const inputArea = ({
|
|||||||
type="file"
|
type="file"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<textarea
|
||||||
|
className={textareaClass}
|
||||||
|
disabled={isLoading}
|
||||||
|
onChange={handleTextChange}
|
||||||
|
placeholder="Add notes to include with the image (optional)..."
|
||||||
|
rows={2}
|
||||||
|
value={text}
|
||||||
|
/>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
className={replaceButtonClass}
|
className={replaceButtonClass}
|
||||||
disabled={isLoading || imageBase64 === undefined}
|
disabled={isLoading || imageBase64 === undefined}
|
||||||
@@ -414,15 +427,16 @@ const inputArea = ({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
: <div className="flex flex-col gap-3">
|
: <div className="flex flex-col gap-3">
|
||||||
{mode === "replace"
|
<div className="flex flex-col gap-2">
|
||||||
? <div className="flex flex-col gap-2">
|
|
||||||
{imagePreview === undefined
|
{imagePreview === undefined
|
||||||
? <button
|
? <button
|
||||||
className={pasteButtonClass}
|
className={pasteButtonClass}
|
||||||
onClick={handlePasteButtonClick}
|
onClick={handlePasteButtonClick}
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
{"๐ Paste replacement image (optional)"}
|
{mode === "replace"
|
||||||
|
? "๐ Paste replacement image (optional)"
|
||||||
|
: "๐ Paste image (optional)"}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
: <div className="relative inline-block">
|
: <div className="relative inline-block">
|
||||||
@@ -448,8 +462,6 @@ const inputArea = ({
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
: null}
|
|
||||||
|
|
||||||
<div className="flex gap-3 items-end">
|
<div className="flex gap-3 items-end">
|
||||||
<textarea
|
<textarea
|
||||||
className={textareaClass}
|
className={textareaClass}
|
||||||
@@ -464,7 +476,7 @@ const inputArea = ({
|
|||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
className={sendButtonClass}
|
className={sendButtonClass}
|
||||||
disabled={isLoading || text.trim().length === 0}
|
disabled={isSendDisabled}
|
||||||
onClick={handleSend}
|
onClick={handleSend}
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user