Skip to content

Commit 151f0a1

Browse files
authored
local artifact handler (#15)
### What changes were proposed in this pull request? Introduces a new `FileArtifact` class for handling file-based storage operations. The class provides methods for saving, loading, deleting, and listing JSON files in a specified directory. Additionally, adds a new `ArtifactUploadResponse` interface to standardize storage operation responses. ### Why are the changes needed? To provide a local file storage implementation for artifacts, enabling persistent data storage and retrieval through a consistent interface. This allows for local development and testing without requiring external storage services. ### Does this PR introduce _any_ user-facing change? Yes. This PR introduces new file storage capabilities that developers can use to persist and retrieve data locally. The `FileArtifact` class provides a simple API for file operations with JSON data. ### How was this patch tested? The implementation includes error handling and directory existence checks. Additional unit tests should be added to verify: - File creation and deletion - JSON data persistence and retrieval - Directory creation - Error handling for invalid operations - List functionality for stored files
1 parent 8852ec5 commit 151f0a1

File tree

3 files changed

+99
-1
lines changed

3 files changed

+99
-1
lines changed

core/artifacts/fileArtifact.ts

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
import fs from "fs";
2+
import path from "path";
3+
import { BaseArtifact } from "./baseArtifact";
4+
import { ArtifactUploadResponse, GameEnvironment } from "../types";
5+
6+
export class FileArtifact extends BaseArtifact {
7+
private baseDir: string;
8+
9+
constructor(baseDir: string = "agent_data") {
10+
super("FileArtifact", "Handles file-based storage operations", "storage");
11+
this.baseDir = baseDir;
12+
this.ensureDirectoryExists(baseDir);
13+
}
14+
15+
private ensureDirectoryExists(dir: string): void {
16+
if (!fs.existsSync(dir)) {
17+
fs.mkdirSync(dir, { recursive: true });
18+
}
19+
}
20+
21+
private getFilePath(filename: string): string {
22+
return path.join(this.baseDir, filename);
23+
}
24+
25+
async save(
26+
data: Record<string, unknown>,
27+
filename: string,
28+
): Promise<ArtifactUploadResponse> {
29+
try {
30+
const filePath = this.getFilePath(filename);
31+
const jsonData = JSON.stringify(data, null, 2);
32+
fs.writeFileSync(filePath, jsonData, "utf8");
33+
34+
return {
35+
success: true,
36+
url: filePath,
37+
error: null,
38+
};
39+
} catch (error) {
40+
return {
41+
success: false,
42+
url: null,
43+
error:
44+
error instanceof Error ? error.message : "Unknown error occurred",
45+
};
46+
}
47+
}
48+
49+
async load(filename: string): Promise<Record<string, unknown>> {
50+
try {
51+
const filePath = this.getFilePath(filename);
52+
if (!fs.existsSync(filePath)) {
53+
throw new Error(`File not found: ${filePath}`);
54+
}
55+
56+
const data = fs.readFileSync(filePath, "utf8");
57+
return JSON.parse(data);
58+
} catch (error) {
59+
throw new Error(
60+
`Failed to load file: ${error instanceof Error ? error.message : "Unknown error"}`,
61+
);
62+
}
63+
}
64+
65+
async delete(filename: string): Promise<boolean> {
66+
try {
67+
const filePath = this.getFilePath(filename);
68+
if (fs.existsSync(filePath)) {
69+
fs.unlinkSync(filePath);
70+
return true;
71+
}
72+
return false;
73+
} catch {
74+
return false;
75+
}
76+
}
77+
78+
async list(): Promise<string[]> {
79+
try {
80+
return fs.readdirSync(this.baseDir);
81+
} catch {
82+
return [];
83+
}
84+
}
85+
86+
async modifyEnvironment(environment: GameEnvironment): Promise<void> {
87+
// Default implementation - no environment modifications needed for file storage
88+
console.log("FileArtifact: modifyEnvironment called", environment);
89+
return Promise.resolve();
90+
}
91+
}

core/types.ts

+6
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,9 @@ export interface GameEnvironment {
2020
entities: Record<string, unknown>;
2121
};
2222
}
23+
24+
export interface ArtifactUploadResponse {
25+
success: boolean;
26+
url: string | null;
27+
error: string | null;
28+
}

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"typescript": "^5.0.0",
1919
"@google-ai/generativelanguage": "^1.1.0",
2020
"google-auth-library": "^9.0.0",
21-
"mongodb": "^6.3.0"
21+
"mongodb": "^6.3.0",
22+
"@types/node": "^latest_version"
2223
},
2324
"devDependencies": {
2425
"@types/node": "^20.0.0",

0 commit comments

Comments
 (0)