func chat()

in adventure.go [104:111]


func chat(ctx context.Context, session *genai.ChatSession) {
	for {
		fmt.Println()
		action := askUser(">>")
		resp := fmt.Sprintf("The user wrote: %v\n\nWrite the next short paragraph.", action)
		sendAndPrintResponse(ctx, session, resp)
	}
}