Skip to content

Commit 33b0c2c

Browse files
SDK regeneration
1 parent 19de6aa commit 33b0c2c

4 files changed

Lines changed: 16 additions & 2 deletions

File tree

.fern/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"streamType": "web",
2121
"useDefaultRequestParameterValues": true
2222
},
23-
"originGitCommit": "3cd4b100644a9765428dcfe024d3a3178e221009",
23+
"originGitCommit": "ea1f83c2a6dd589a7c5a7e003232f65b2232b03a",
2424
"sdkVersion": "0.0.0"
2525
}

src/api/types/AgentSkillManifestSource.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22

33
import type * as TrueFoundry from "../index.js";
44

5-
export type AgentSkillManifestSource = TrueFoundry.AgentSkillSourceInline | TrueFoundry.AgentSkillSourceBlobStorage;
5+
export type AgentSkillManifestSource =
6+
| TrueFoundry.AgentSkillSourceInline
7+
| TrueFoundry.AgentSkillSourceBlobStorage
8+
| TrueFoundry.AgentSkillSourceLocal;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// This file was auto-generated by Fern from our API Definition.
2+
3+
/**
4+
* Load the skill from a local directory. The directory must include SKILL.md with valid YAML front matter.
5+
*/
6+
export interface AgentSkillSourceLocal {
7+
type: "local";
8+
/** Path to the skill root directory, including SKILL.md and related assets. */
9+
skill_dir: string;
10+
}

src/api/types/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export * from "./AgentSkillManifest.js";
1313
export * from "./AgentSkillManifestSource.js";
1414
export * from "./AgentSkillSourceBlobStorage.js";
1515
export * from "./AgentSkillSourceInline.js";
16+
export * from "./AgentSkillSourceLocal.js";
1617
export * from "./AgentSkillVersion.js";
1718
export * from "./AgentSource.js";
1819
export * from "./Ai21Integrations.js";

0 commit comments

Comments
 (0)