Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: genkit start is back #1233

Merged
merged 1 commit into from
Nov 11, 2024
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
12 changes: 2 additions & 10 deletions docs/dotprompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,7 @@ It's okay if the file contains other code, but the above is all that's required.
Load the developer UI in the same project:

```posix-terminal
export GENKIT_ENV=dev

npx genkit ui:start

npx tsx your-code.ts
genkit start -- tsx --watch src/your-code.ts
```

In the Models section, choose the model you want to use from the list of models
Expand Down Expand Up @@ -187,11 +183,7 @@ your application code.
Load the developer UI from your project directory:

```posix-terminal
export GENKIT_ENV=dev

npx genkit ui:start

npx tsx your-code.ts
genkit start -- tsx --watch src/your-code.ts
```

![Genkit developer UI prompt runner](resources/prompts-in-developer-ui.png)
Expand Down
6 changes: 1 addition & 5 deletions docs/flows.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,7 @@ To start the developer UI, run the following commands from your project
directory:

```posix-terminal
export GENKIT_ENV=dev

npx genkit ui:start

npx tsx --watch your-code.ts
genkit start -- tsx --watch src/your-code.ts
```

From the **Run** tab of developer UI, you can run any of the flows defined in
Expand Down
Loading