@zodic/shared 0.0.361 → 0.0.363
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' &&
|
|
@@ -7,6 +7,7 @@ export class ImageDescriberService {
|
|
|
7
7
|
constructor(@inject(AppContext) private context: AppContext) {}
|
|
8
8
|
|
|
9
9
|
async describeImage({ imageUrl }: { imageUrl: string }): Promise<string> {
|
|
10
|
+
console.log('ImageDescriber imageUrl ->', imageUrl);
|
|
10
11
|
try {
|
|
11
12
|
const response = await this.context.api().callTogether.single(
|
|
12
13
|
[
|