You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/README.md
+45-1
Original file line number
Diff line number
Diff line change
@@ -357,7 +357,7 @@ await gemini.ask([
357
357
```
358
358
359
359
> [!NOTE]
360
-
> that you can also place buffers in the `data` field in the config (this is the v1 method, but it still works). These buffers will be placed, in order, directly after the content in the main message.
360
+
> You can also place buffers in the `data` field in the config (this is the v1 method, but it still works). These buffers will be placed, in order, directly after the content in the main message.
361
361
362
362
##### Message Form:
363
363
@@ -383,6 +383,7 @@ Please check `src/types.ts` for more information about what is accepted in the `
383
383
|`stream`| A function that is called with every new chunk of JSON or Text (depending on the format) that the model receives. [Learn more](#feature-highlight-streaming)|`undefined`|
384
384
|`safetySettings`| An object that specifies the blocking threshold for each safety rating dimension. [Learn more](#how-to-set-safety-settings)| An object representing Google's defaults. [Learn more](#how-to-set-safety-settings)|
385
385
|`systemInstruction`| Instruct what the model should act like (i.e. a persona, output format, style/tone, goals/rules, and additional context) |`""`|
386
+
|`jsonSchema`| Make Gemini always output in a set JSON schema. Set to `true` to let Gemini pick the schema, or give a specific schema. [Learn more]()|`undefined`|
386
387
387
388
Example Usage:
388
389
@@ -438,6 +439,49 @@ You can assign 4 different thresholds (which are an enum under `Gemini.SafetyThr
438
439
439
440
By Google's default, all categories are set to `BLOCK_SOME`. Google [also states](https://ai.google.dev/gemini-api/docs/safety-settings) that "Adjusting to lower safety settings will trigger a more indepth review process of your application."
440
441
442
+
#### How to set a specific output JSON Schema
443
+
444
+
Google allows you to force Gemini to reply in a specific JSON schema. Note that Gemini AI requires you to manually `JSON.parse()` this output.
445
+
446
+
The following examples entail generating cookie recipies with Gemini returning an array of objects, each with a `recipe_name` field.
447
+
448
+
This feature can be enabled simply by setting the `jsonSchema` config to `true`. It is ideal that you specify how you want the JSON to be shaped in your prompt, but it is not necessary.
449
+
450
+
```javascript
451
+
awaitgemini.ask(
452
+
"List 5 popular cookie recipes. Give them as an array of objects, each with a recipe_name field.",
453
+
{
454
+
jsonSchema:true,
455
+
}
456
+
);
457
+
```
458
+
459
+
However, you can also set a specific JSON schema with code. Pass in a JSON schema object as follows into `jsonSchema`:
460
+
461
+
```javascript
462
+
awaitgemini.ask(
463
+
"List 5 popular cookie recipes. Give them as an array of objects, each with a recipe_name field.",
464
+
{
465
+
jsonSchema: {
466
+
type:Gemini.SchemaType.ARRAY,
467
+
items: {
468
+
type:Gemini.SchemaType.OBJECT,
469
+
properties: {
470
+
recipe_name: {
471
+
type:Gemini.SchemaType.STRING,
472
+
},
473
+
},
474
+
},
475
+
},
476
+
}
477
+
);
478
+
```
479
+
480
+
The available types are `ARRAY`, `OBJECT`, `STRING`, `NUMBER`, `INTEGER`, `BOOLEAN`, accessible in the `Gemini.SchemaType` enum. Learn more about this syntax at [Google's documentation](https://ai.google.dev/gemini-api/docs/api-overview#json).
481
+
482
+
> [!NOTE]
483
+
> When you pass in this schema object into `gemini-1.5-flash-latest`, it will be directly included as text after your prompt, wrapped in `<JSONSchema>` tags. However, with `gemini-1.5-pro-latest`, Gemini utilizes controlled generation/constrained decoding to force the output to be in your JSON schema. In other words, Gemini 1.5 Flash should be able to reasonably infer what you want to do, but in the cases where it still deviates from your schema, use Gemini 1.5 Pro to force it.
484
+
441
485
### `Gemini.count()`
442
486
443
487
This method uses the `countTokens` command to figure out the number of tokens _in your input_.
0 commit comments