Skip to content

Chi tutorial

In this tutorial, you’ll build Bargain Chef, a standalone Genkit backend on Chi that exposes a recipe-generating flow over HTTP. It uses two AI patterns Genkit simplifies: streaming structured output and tool calling.

Chi uses standard net/http types throughout, so the HTTP handler returned by genkit.Handler plugs in directly with no adapter needed. This tutorial is backend-only. To consume the streamed output from a UI, pair it with one of the frontend integration guides.

For each request, your server prompts Gemini to draft a recipe, and the model calls a tool to look up mock grocery sale prices so it can prefer on-sale ingredients. The server streams the recipe back field-by-field as it’s generated, so clients see progress before the full recipe is ready.

You can find the finished code on GitHub.

Terminal window
mkdir my-genkit-chi && cd my-genkit-chi
go mod init example/my-genkit-chi

First, install the Genkit CLI:

Terminal window
curl -sL cli.genkit.dev | bash

Then install the Go packages you need:

Terminal window
go get github.com/firebase/genkit/go
go get github.com/firebase/genkit/go/plugins/googlegenai
go get github.com/go-chi/chi/v5
go get github.com/go-chi/cors

These packages include:

  • github.com/firebase/genkit/go: Core Genkit SDK.
  • github.com/firebase/genkit/go/plugins/googlegenai: Plugin that connects Genkit to Google’s Gemini models.
  • github.com/go-chi/chi/v5: Chi router.
  • github.com/go-chi/cors: CORS middleware for Chi.

This tutorial uses the Gemini API from Google AI Studio:

Get a Gemini API Key

Set the GEMINI_API_KEY environment variable to your key:

Terminal window
export GEMINI_API_KEY=<your API key>

The backend handles requests from a client. For each request, it prompts Gemini to draft a recipe, lets the model call a tool to look up today’s grocery sale prices, and streams the partial recipe back to the caller as it’s generated.

The whole pipeline is a single Genkit flow. A flow is a special Genkit function with built-in observability, type safety, and tooling integration.

You’ll build the backend in four parts:

  1. Initialize Genkit and register Gemini as the model provider.
  2. Define a tool the model can call to fetch sale prices.
  3. Describe the recipe shape with a Go struct so Genkit can validate the final output and stream partial recipe chunks.
  4. Define the flow that ties everything together.

Create a main.go file:

main.go
package main
import (
"context"
"errors"
"log"
"net/http"
"time"
"github.com/firebase/genkit/go/ai"
"github.com/firebase/genkit/go/genkit"
"github.com/firebase/genkit/go/plugins/googlegenai"
"github.com/go-chi/chi/v5"
chimw "github.com/go-chi/chi/v5/middleware"
"github.com/go-chi/cors"
"google.golang.org/genai"
)
type DayType string
const (
DayTypeWeekday DayType = "weekday"
DayTypeWeekend DayType = "weekend"
)
type SaleQuery struct {
DayType DayType `json:"dayType" jsonschema:"enum=weekday,enum=weekend,description=Whether to fetch weekday or weekend sale prices."`
}
type SaleIngredient struct {
Name string `json:"name"`
Price string `json:"price"`
}
type RecipeIngredient struct {
Name string `json:"name"`
Quantity string `json:"quantity"`
OnSale bool `json:"onSale"`
}
type Recipe struct {
Title string `json:"title"`
Description string `json:"description"`
Servings int `json:"servings"`
Ingredients []RecipeIngredient `json:"ingredients"`
Steps []string `json:"steps"`
}
type CravingInput struct {
Craving string `json:"craving" jsonschema:"description=What the user feels like eating right now."`
}
func main() {
ctx := context.Background()
g := genkit.Init(ctx,
genkit.WithPlugins(&googlegenai.GoogleAI{}),
)
getIngredientsOnSale := genkit.DefineTool(g, "getIngredientsOnSale",
"Returns the ingredients on sale at the local grocery store, with prices. The sale set differs between weekdays and weekends.",
func(toolCtx *ai.ToolContext, input SaleQuery) ([]SaleIngredient, error) {
// Mock data: in a real app, query a pricing database.
if input.DayType == DayTypeWeekend {
return []SaleIngredient{
{Name: "chicken breast", Price: "$2.99/lb"},
{Name: "pasta", Price: "$0.79"},
{Name: "canned tomatoes", Price: "$0.99"},
{Name: "garlic", Price: "$0.50 / head"},
{Name: "olive oil", Price: "$6.99"},
}, nil
}
return []SaleIngredient{
{Name: "eggs", Price: "$3.49 / dozen"},
{Name: "spinach", Price: "$1.99"},
{Name: "parmesan", Price: "$4.99"},
{Name: "lemons", Price: "$0.50 each"},
{Name: "rice", Price: "$2.49"},
{Name: "butter", Price: "$3.99"},
}, nil
},
)
bargainChefFlow := genkit.DefineStreamingFlow(g, "bargainChefFlow",
func(ctx context.Context, input CravingInput, sendChunk func(context.Context, *Recipe) error) (*Recipe, error) {
today := time.Now().Weekday().String()
prompt := "Today is " + today + ". The user is craving: " + input.Craving + ".\n\n" +
"Call the getIngredientsOnSale tool with the dayType that matches today. Saturday and Sunday are weekends; all other days are weekdays. " +
"Then propose ONE recipe that takes advantage of those deals. For each ingredient, set onSale=true if it appears in the tool's response, false otherwise."
var final *Recipe
for value, err := range genkit.GenerateDataStream[*Recipe](ctx, g,
ai.WithModelName("googleai/gemini-flash-latest"),
ai.WithConfig(&genai.GenerateContentConfig{
ThinkingConfig: &genai.ThinkingConfig{
ThinkingLevel: genai.ThinkingLevelMinimal,
},
}),
ai.WithPrompt(prompt),
ai.WithTools(getIngredientsOnSale),
) {
if err != nil {
return nil, err
}
if value.Done {
final = value.Output
break
}
if value.Chunk != nil {
if err := sendChunk(ctx, value.Chunk); err != nil {
return nil, err
}
}
}
if final == nil {
return nil, errors.New("failed to generate recipe")
}
return final, nil
},
)
r := chi.NewRouter()
r.Use(chimw.Logger)
r.Use(cors.Handler(cors.Options{
AllowedOrigins: []string{"*"},
AllowedMethods: []string{"POST", "OPTIONS"},
AllowedHeaders: []string{"Content-Type", "Accept"},
}))
r.Post("/bargainChefFlow", genkit.Handler(bargainChefFlow))
log.Println("Chi server listening on http://localhost:8080")
if err := http.ListenAndServe(":8080", r); err != nil {
log.Fatalf("server error: %v", err)
}
}

A few details are worth noting:

  • Initialize Genkit: genkit.Init(ctx, genkit.WithPlugins(&googlegenai.GoogleAI{})) sets up the SDK and registers Gemini as the model provider.
  • Final output and streamed chunks: The Recipe struct (with json tags) is the structure of the final response. Genkit reflects on the type passed to GenerateDataStream[*Recipe] to derive a JSON schema, then validates the model’s output against it. Because the parser handles partial JSON, the same struct describes both the final response and each in-progress chunk emitted during streaming. The flow streams *Recipe values so an in-progress chunk can be nil until the first fields arrive.
  • The getIngredientsOnSale tool: The model decides when to call it based on the prompt, letting it reach outside its training data and into your code to fetch live sale prices before finalizing the recipe. The SaleQuery input struct forces the model to pass dayType: "weekday" or "weekend"; Genkit derives the JSON schema from the Go type, including the enum constraint declared in the jsonschema tag. In a real app, the tool would query a pricing database, inventory system, or third-party API.
  • sendChunk: genkit.DefineStreamingFlow registers a flow that accepts a sendChunk callback. Inside, genkit.GenerateDataStream[*Recipe] yields typed partial recipes as the model produces them, and the loop forwards each chunk to the caller so a client UI can fill in field by field. When the iterator reports Done, the flow reads the validated final recipe from the response and returns it so the HTTP request still resolves with a complete value.
  • CORS: AllowedOrigins: []string{"*"} allows all origins, so any browser frontend can call this endpoint during development. Before deploying, restrict it to the origins you actually serve.

Verify that your project layout matches the structure below:

  • go.mod
  • go.sum
  • main.go

If you’re coding with an AI assistant, install the Genkit Agent Skills so it has structured guidance on Genkit APIs, patterns, and common errors:

Terminal window
npx skills add genkit-ai/skills

See Develop with AI for tool-specific installation instructions.

Start the server:

Terminal window
go run .

You should see Chi server listening on http://localhost:8080. The server exposes POST /bargainChefFlow, which streams the recipe back as server-sent events (SSE) when the client requests them.

You can test the route directly with curl, and you can use the Developer UI to inspect both manual runs and requests from any client.

With the server running, use the -N flag and an Accept: text/event-stream header to consume the streamed response:

Terminal window
curl -N -X POST http://localhost:8080/bargainChefFlow \
-H "Content-Type: application/json" \
-H "Accept: text/event-stream" \
-d '{"data":{"craving":"something warm with chicken"}}'

The { "data": ... } wrapper is required: Genkit’s HTTP handler reads the flow input from the request body’s data field.

The response arrives as a series of data: events. Each event contains the partial recipe accumulated so far, with fields such as title, ingredients, and steps filling in as the model generates them. The final event contains the complete, validated recipe.

The Developer UI is Genkit’s local console for testing flows and inspecting execution traces. It runs alongside your backend code, gives you a visual runner for any flow in your project, and records every tool call and model invocation so you can iterate on prompts and debug tool behavior.

  1. Start the Developer UI from your project root:

    Terminal window
    genkit start -- go run .

    This launches the Developer UI at http://localhost:4000 by default.

  2. Select bargainChefFlow from the list of flows.

  3. Enter sample input:

    { "craving": "something warm with chicken" }
  4. Click Run.

    You’ll see the generated recipe, with a trace that builds in real time so you can follow the flow’s progress through each tool call and model invocation.

You now have a standalone Genkit backend on Chi that streams structured output from Gemini over HTTP, calls a tool during generation to ground the model’s response in mock sale-price data, validates input and output against schemas, and surfaces every step in a local trace UI.