Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ alongside the native flows. You have two options:
}); // Registers the middleware
```

For more information about using Express, see the [Cloud Run](/genkit/express)
For more information about using Express, see the [Cloud Run](/genkit/cloud-run)
instructions.

Please note, if you go with (1), you the `middleware` configuration option will
Expand Down
2 changes: 1 addition & 1 deletion docs/evaluation.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ you get started:

### Evaluator plugins

Genkit supports additional evaluators through plugins like the VertexAI Rapid Evaluators via the [VertexAI Plugin](./plugins/vertex-ai#evaluation).
Genkit supports additional evaluators through plugins like the VertexAI Rapid Evaluators via the [VertexAI Plugin](./plugins/vertex-ai#evaluators).

## Advanced use

Expand Down
4 changes: 2 additions & 2 deletions docs/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ with additional Genkit capabilities, see the following guides:
* [Creating flows](/docs/genkit/flows): Learn how to use special Genkit
functions, called flows, that provide end-to-end observability for workflows
and rich debugging from Genkit tooling.
* [Managing prompts](/docs/genkit/dotprompt)): Learn how Genkit helps you manage
* your prompts and configuration together as code.
* [Managing prompts](/docs/genkit/dotprompt): Learn how Genkit helps you manage
your prompts and configuration together as code.
1 change: 1 addition & 0 deletions docs/plugin-authoring-evaluator.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ const DELICIOUSNESS_PROMPT = ai.definePrompt(
Now, define the function that will take an example which includes `output` as is required by the prompt and score the result. Genkit test cases include `input` as required a required field, with optional fields for `output` and `context`. It is the responsibility of the evaluator to validate that all fields required for evaluation are present.

```ts
import { ModelArgument, z } from 'genkit';
import { BaseEvalDataPoint, Score } from 'genkit/evaluator';

/**
Expand Down
Loading