Skip to content

Commit 73b3ef8

Browse files
committedJun 2, 2024··
✨ Added documentation for specified JSON Schema
1 parent bc8ad14 commit 73b3ef8

File tree

1 file changed

+45
-1
lines changed

1 file changed

+45
-1
lines changed
 

‎.github/README.md

+45-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ await gemini.ask([
357357
```
358358

359359
> [!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.
361361
362362
##### Message Form:
363363

@@ -383,6 +383,7 @@ Please check `src/types.ts` for more information about what is accepted in the `
383383
| `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` |
384384
| `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) |
385385
| `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` |
386387

387388
Example Usage:
388389

@@ -438,6 +439,49 @@ You can assign 4 different thresholds (which are an enum under `Gemini.SafetyThr
438439

439440
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."
440441

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+
await gemini.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+
await gemini.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+
441485
### `Gemini.count()`
442486

443487
This method uses the `countTokens` command to figure out the number of tokens _in your input_.

0 commit comments

Comments
 (0)
Please sign in to comment.