Skip to content

Commit 9c0a5ca

Browse files
amirhcopybara-github
authored andcommitted
chore(main): release 0.3.0
PiperOrigin-RevId: 735890319
1 parent b76c5c6 commit 9c0a5ca

File tree

5 files changed

+42
-14
lines changed

5 files changed

+42
-14
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
11
# Changelog
2+
3+
4+
## 0.3.0 (2025-03-11)
5+
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* Make file.upload use named parameters.
10+
11+
### Features
12+
13+
* Enable Live for Vertex AI. ([2bda9d4](https://github.com/googleapis/js-genai/commit/2bda9d407712fbdab127ee7797572ac520b32423))
14+
15+
16+
### Bug Fixes
17+
18+
19+
* Set web as the browser entry points for bundlers that don't support the exports key ([18cb728](https://github.com/googleapis/js-genai/commit/18cb7283665f42fc9c7243ad9b82545c551e7444))
20+
21+
### Miscellaneous Chores
22+
23+
* Make file.upload use named parameters. ([60433f4](https://github.com/googleapis/js-genai/commit/60433f41b770d3c0a1e3cbbb50a2cea985396426))

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google/genai",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "",
55
"main": "dist/node/index.js",
66
"module": "dist/web/index.mjs",

src/_api_client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {File, HttpOptions, HttpResponse, UploadFileConfig} from './types';
1212
const CONTENT_TYPE_HEADER = 'Content-Type';
1313
const USER_AGENT_HEADER = 'User-Agent';
1414
const GOOGLE_API_CLIENT_HEADER = 'x-goog-api-client';
15-
const SDK_VERSION = '0.2.0'; // x-release-please-version
15+
const SDK_VERSION = '0.3.0'; // x-release-please-version
1616
const LIBRARY_LABEL = `google-genai-sdk/${SDK_VERSION}`;
1717
const VERTEX_AI_API_DEFAULT_VERSION = 'v1beta1';
1818
const GOOGLE_AI_API_DEFAULT_VERSION = 'v1beta';

test/unit/live_test.ts

+16-10
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from '../../src/_websocket';
1414
import {CrossUploader} from '../../src/cross/_cross_uploader';
1515
import {Live} from '../../src/live';
16-
import * as types from '../../src/types'
16+
import * as types from '../../src/types';
1717

1818
class FakeWebSocketFactory implements WebSocketFactory {
1919
create(
@@ -65,16 +65,19 @@ describe('live', () => {
6565
const session = await live.connect({
6666
model: 'models/gemini-2.0-flash-exp',
6767
callbacks: {
68-
onmessage: function (e: types.LiveServerMessage){void e},
68+
onmessage: function (e: types.LiveServerMessage) {
69+
void e;
70+
},
6971
},
7072
});
7173

7274
const websocketFactorySpyCall = websocketFactorySpy.calls.all()[0];
7375
expect(websocketFactorySpyCall.args[0]).toBe(
7476
'wss://generativelanguage.googleapis.com//ws/google.ai.generativelanguage.v1beta.GenerativeService.BidiGenerateContent?key=test-api-key',
7577
);
78+
// TODO(b/402513079): Don't hardcode the version here
7679
expect(JSON.stringify(websocketFactorySpyCall.args[1])).toBe(
77-
'{"content-type":"application/json","user-agent":"google-genai-sdk/0.2.0 undefined","x-goog-api-client":"google-genai-sdk/0.2.0 undefined"}',
80+
'{"content-type":"application/json","user-agent":"google-genai-sdk/0.3.0 undefined","x-goog-api-client":"google-genai-sdk/0.3.0 undefined"}',
7881
);
7982
// Check that the onopen callback is wrapped to call the provided callbacks
8083
// and then resolve the onopen promise. The string is not fully checked to
@@ -88,9 +91,7 @@ describe('live', () => {
8891
expect(onopenString).toContain('onopenResolve({});');
8992
expect(
9093
JSON.stringify(websocketFactorySpyCall.args[2].onclose.toString()),
91-
).toContain(
92-
'void e;',
93-
);
94+
).toContain('void e;');
9495
expect(session).toBeDefined();
9596
});
9697

@@ -110,7 +111,9 @@ describe('live', () => {
110111
onopen: () => {
111112
throw new Error('custom onopen error');
112113
},
113-
onmessage: function (e: types.LiveServerMessage){void e},
114+
onmessage: function (e: types.LiveServerMessage) {
115+
void e;
116+
},
114117
},
115118
});
116119
} catch (e: unknown) {
@@ -161,16 +164,19 @@ describe('live', () => {
161164
const session = await live.connect({
162165
model: 'models/gemini-2.0-flash-exp',
163166
callbacks: {
164-
onmessage: function (e: types.LiveServerMessage){void e},
165-
}
167+
onmessage: function (e: types.LiveServerMessage) {
168+
void e;
169+
},
170+
},
166171
});
167172

168173
const websocketFactorySpyCall = websocketFactorySpy.calls.all()[0];
169174
expect(websocketFactorySpyCall.args[0]).toBe(
170175
'wss://generativelanguage.googleapis.com//ws/google.ai.generativelanguage.v1beta.GenerativeService.BidiGenerateContent?key=test-api-key',
171176
);
177+
// TODO(b/402513079): Don't hardcode the version here
172178
expect(JSON.stringify(websocketFactorySpyCall.args[1])).toBe(
173-
'{"content-type":"application/json","user-agent":"google-genai-sdk/0.2.0 undefined","x-goog-api-client":"google-genai-sdk/0.2.0 undefined"}',
179+
'{"content-type":"application/json","user-agent":"google-genai-sdk/0.3.0 undefined","x-goog-api-client":"google-genai-sdk/0.3.0 undefined"}',
174180
);
175181
// Check that the onopen callback is wrapped to call the provided callbacks
176182
// and then resolve the onopen promise. The string is not fully checked to

0 commit comments

Comments
 (0)