@maxim_mazurok/gapi.client.firebaseml-v2beta
Advanced tools
Comparing version 0.0.20241008 to 0.0.20241009
@@ -12,3 +12,3 @@ /* Type definitions for non-npm package Firebase ML API v2beta 0.0 */ | ||
// Generated from: https://firebaseml.googleapis.com/$discovery/rest?version=v2beta | ||
// Revision: 20241008 | ||
// Revision: 20241009 | ||
@@ -84,2 +84,8 @@ /// <reference types="gapi.client" /> | ||
} | ||
interface GoogleCloudAiplatformV1beta1CodeExecutionResult { | ||
/** Required. Outcome of the code execution. */ | ||
outcome?: string; | ||
/** Optional. Contains stdout when code execution is successful, stderr or other description otherwise. */ | ||
output?: string; | ||
} | ||
interface GoogleCloudAiplatformV1beta1Content { | ||
@@ -117,2 +123,8 @@ /** Required. Ordered `Parts` that constitute a single message. Parts may have different IANA MIME types. */ | ||
} | ||
interface GoogleCloudAiplatformV1beta1ExecutableCode { | ||
/** Required. The code to be executed. */ | ||
code?: string; | ||
/** Required. Programming language of the `code`. */ | ||
language?: string; | ||
} | ||
interface GoogleCloudAiplatformV1beta1FileData { | ||
@@ -309,2 +321,6 @@ /** Required. URI. */ | ||
interface GoogleCloudAiplatformV1beta1Part { | ||
/** Optional. Result of executing the [ExecutableCode]. */ | ||
codeExecutionResult?: GoogleCloudAiplatformV1beta1CodeExecutionResult; | ||
/** Optional. Code generated by the model that is meant to be executed. */ | ||
executableCode?: GoogleCloudAiplatformV1beta1ExecutableCode; | ||
/** Optional. URI based data. */ | ||
@@ -420,2 +436,4 @@ fileData?: GoogleCloudAiplatformV1beta1FileData; | ||
interface GoogleCloudAiplatformV1beta1Tool { | ||
/** Optional. CodeExecution tool type. Enables the model to execute code as part of generation. This field is only used by the Gemini Developer API services. */ | ||
codeExecution?: any; | ||
/** Optional. Function tool type. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum 128 function declarations can be provided. */ | ||
@@ -428,2 +446,3 @@ functionDeclarations?: GoogleCloudAiplatformV1beta1FunctionDeclaration[]; | ||
} | ||
interface GoogleCloudAiplatformV1beta1ToolCodeExecution {} | ||
interface GoogleCloudAiplatformV1beta1ToolConfig { | ||
@@ -430,0 +449,0 @@ /** Optional. Function calling config. */ |
{ | ||
"name": "@maxim_mazurok/gapi.client.firebaseml-v2beta", | ||
"version": "0.0.20241008", | ||
"version": "0.0.20241009", | ||
"description": "TypeScript typings for Firebase ML API v2beta", | ||
@@ -5,0 +5,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42308
668