Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .kokoro/presubmit/node18/common.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ action {
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"

# Use the trampoline script to run in docker.
build_file: "nodejs-vertexai/.kokoro/trampoline_v2.sh"
build_file: "nodejs-agentplatform/.kokoro/trampoline_v2.sh"

# Configure the docker image for kokoro-trampoline.
env_vars: {
Expand All @@ -20,5 +20,5 @@ env_vars: {
}
env_vars: {
key: "TRAMPOLINE_BUILD_FILE"
value: "github/nodejs-vertexai/.kokoro/test.sh"
value: "github/nodejs-agentplatform/.kokoro/test.sh"
}
2 changes: 1 addition & 1 deletion .kokoro/presubmit/node18/continuous-system-test.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/google-cloud-nodejs"

env_vars: {
key: "TRAMPOLINE_BUILD_FILE"
value: "github/nodejs-vertexai/.kokoro/system-test.sh"
value: "github/nodejs-agentplatform/.kokoro/system-test.sh"
}
4 changes: 2 additions & 2 deletions .kokoro/presubmit/node18/docs.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ env_vars: {
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"

# Use the trampoline script to run in docker.
build_file: "nodejs-vertexai/.kokoro/trampoline_v2.sh"
build_file: "nodejs-agentplatform/.kokoro/trampoline_v2.sh"

env_vars: {
key: "TRAMPOLINE_BUILD_FILE"
value: "github/nodejs-vertexai/.kokoro/presubmit/node18/docs.sh"
value: "github/nodejs-agentplatform/.kokoro/presubmit/node18/docs.sh"
}
2 changes: 1 addition & 1 deletion .kokoro/presubmit/node18/system-test.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/google-cloud-nodejs"

env_vars: {
key: "TRAMPOLINE_BUILD_FILE"
value: "github/nodejs-vertexai/.kokoro/system-test.sh"
value: "github/nodejs-agentplatform/.kokoro/system-test.sh"
}
4 changes: 2 additions & 2 deletions .kokoro/presubmit/node22/common.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ action {
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"

# Use the trampoline script to run in docker.
build_file: "nodejs-vertexai/.kokoro/trampoline_v2.sh"
build_file: "nodejs-agentplatform/.kokoro/trampoline_v2.sh"

# Configure the docker image for kokoro-trampoline.
env_vars: {
Expand All @@ -20,5 +20,5 @@ env_vars: {
}
env_vars: {
key: "TRAMPOLINE_BUILD_FILE"
value: "github/nodejs-vertexai/.kokoro/test.sh"
value: "github/nodejs-agentplatform/.kokoro/test.sh"
}
4 changes: 2 additions & 2 deletions .kokoro/presubmit/node22/docs.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ env_vars: {
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"

# Use the trampoline script to run in docker.
build_file: "nodejs-vertexai/.kokoro/trampoline_v2.sh"
build_file: "nodejs-agentplatform/.kokoro/trampoline_v2.sh"

env_vars: {
key: "TRAMPOLINE_BUILD_FILE"
value: "github/nodejs-vertexai/.kokoro/presubmit/node22/docs.sh"
value: "github/nodejs-agentplatform/.kokoro/presubmit/node22/docs.sh"
}
2 changes: 1 addition & 1 deletion .kokoro/presubmit/node22/system-test.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/google-cloud-nodejs"

env_vars: {
key: "TRAMPOLINE_BUILD_FILE"
value: "github/nodejs-vertexai/.kokoro/system-test.sh"
value: "github/nodejs-agentplatform/.kokoro/system-test.sh"
}
2 changes: 1 addition & 1 deletion .repo-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name_pretty": "Google Cloud Vertex AI",
"release_level": "preview",
"language": "nodejs",
"repo": "googleapis/nodejs-vertexai",
"repo": "googleapis/nodejs-agentplatform",
"distribution_name": "@google-cloud/vertexai",
"api_id": "aiplatform.googleapis.com",
"api_shortname": "aiplatform",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/googleapis/nodejs-vertexai",
"repository": "googleapis/nodejs-vertexai",
"homepage": "https://github.com/googleapis/nodejs-agentplatform",
"repository": "googleapis/nodejs-agentplatform",
"main": "build/src/index.js",
"type": "commonjs",
"scripts": {
Expand Down
36 changes: 18 additions & 18 deletions src/types/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,22 @@ export enum SandboxState {
STATE_DELETED = 'STATE_DELETED',
}

/** Output only. The source of the Skill. */
export enum SkillSource {
/**
* The skill source is unspecified.
*/
SKILL_SOURCE_UNSPECIFIED = 'SKILL_SOURCE_UNSPECIFIED',
/**
* The skill is created by a user.
*/
USER = 'USER',
/**
* The skill is a system skill.
*/
SYSTEM = 'SYSTEM',
}

/** State of the Skill. */
export enum SkillState {
/**
Expand All @@ -180,22 +196,6 @@ export enum SkillState {
DELETING = 'DELETING',
}

/** Output only. The source of the Skill. */
export enum SkillSource {
/**
* The skill source is unspecified.
*/
SKILL_SOURCE_UNSPECIFIED = 'SKILL_SOURCE_UNSPECIFIED',
/**
* The skill is created by a user.
*/
USER = 'USER',
/**
* The skill is a system skill.
*/
SYSTEM = 'SYSTEM',
}

/** Output only. The state of the Skill Revision. */
export enum State {
/**
Expand Down Expand Up @@ -2062,7 +2062,7 @@ export declare interface SandboxEnvironment {
owner?: string;
/** Optional. The resource name of the SandboxEnvironmentSnapshot to use for creating this SandboxEnvironment. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironmentSnapshots/{sandbox_environment_snapshot}` */
sandboxEnvironmentSnapshot?: string;
/** Optional. The name of the SandboxEnvironmentTemplate specified in the parent Agent Engine resource that this SandboxEnvironment is created from. Only one of `sandbox_environment_template` and `spec` should be set. */
/** Optional. The name of the SandboxEnvironmentTemplate specified in the parent Agent Engine resource that this SandboxEnvironment is created from. */
sandboxEnvironmentTemplate?: string;
}

Expand Down Expand Up @@ -2829,7 +2829,7 @@ export declare interface SkillRevision {
name?: string;
/** Output only. Timestamp when this Skill Revision was created. */
createTime?: string;
/** Output only. The state of the Skill at this revision. TODO(b/503772996) Use a different proto for skill data included in skill revision */
/** Output only. The state of the Skill at this revision. */
skill?: Skill;
}

Expand Down
4 changes: 2 additions & 2 deletions vertexai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/googleapis/nodejs-vertexai",
"repository": "googleapis/nodejs-vertexai",
"homepage": "https://github.com/googleapis/nodejs-agentplatform",
"repository": "googleapis/nodejs-agentplatform",
"main": "build/src/index.js",
"type": "commonjs",
"scripts": {
Expand Down
Loading