@zodic/shared 0.0.360 → 0.0.362
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -108,7 +108,7 @@ export class ArtifactService {
|
|
|
108
108
|
if (existingArtifact) {
|
|
109
109
|
const artifactAge =
|
|
110
110
|
Date.now() - new Date(existingArtifact.createdAt).getTime();
|
|
111
|
-
const twentyMinutesMs =
|
|
111
|
+
const twentyMinutesMs = 1 * 60 * 1000; // 1 minute for testing
|
|
112
112
|
|
|
113
113
|
if (
|
|
114
114
|
existingArtifact.status === 'pending' &&
|
|
@@ -15,7 +15,7 @@ export class ImageDescriberService {
|
|
|
15
15
|
content: [
|
|
16
16
|
{
|
|
17
17
|
type: 'text',
|
|
18
|
-
text: 'Describe the following traits of the person in the picture:\n- Hair color, size and style\n- Skin color\n
|
|
18
|
+
text: 'Describe the following traits of the person in the picture:\n- Hair color, size and style\n- Skin color\n\nReturn the result in the following format:\n\nHair: hair description\nSkin: skin description',
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
type: 'image_url',
|