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
5.To see the output, look for the log line `Saving EvalRun` with the path to the json file.
123
+
5.Go to the **Evaluations** tab in the Developer UI to view the evaluation results.
122
124
123
125
## Code it
124
126
@@ -146,6 +148,16 @@ pnpm build:watch
146
148
147
149
in the package that you're editing.
148
150
151
+
## Document it
152
+
153
+
If you are contributing to the core Genkit JS SDK (under the `/js` directory), please make sure that all exported members have a valid [JSDoc](https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html) associated with them.
154
+
155
+
Use the following command to build and view the new API reference locally.
156
+
157
+
```
158
+
cd js && pnpm build && pnpm typedoc-html && open api-refs-js/index.html
159
+
```
160
+
149
161
## Send it
150
162
151
163
Once done coding you will want to send a PR. Always do things in a separate branch (by convention name the branch `your_name-feature-something`).
0 commit comments