truffler 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +20 -0
  3. data/README.md +71 -8
  4. data/lib/generators/truffler/install/templates/migration.rb.tt +6 -3
  5. data/lib/generators/truffler/upgrade/templates/backfill_spends_tenant_key_migration.rb.tt +25 -0
  6. data/lib/generators/truffler/upgrade/templates/labels_search_covering_migration.rb.tt +32 -0
  7. data/lib/generators/truffler/upgrade/upgrade_generator.rb +49 -3
  8. data/lib/tasks/truffler.rake +28 -13
  9. data/lib/truffler/benchmark/runner.rb +1 -1
  10. data/lib/truffler/clients/evaluator.rb +44 -0
  11. data/lib/truffler/configuration.rb +9 -0
  12. data/lib/truffler/definition.rb +52 -0
  13. data/lib/truffler/embeddings/backfill.rb +40 -11
  14. data/lib/truffler/embeddings/label_vector.rb +1 -1
  15. data/lib/truffler/embeddings/neighbor_store.rb +33 -7
  16. data/lib/truffler/embeddings/vector_store.rb +9 -3
  17. data/lib/truffler/jobs/backfill_job.rb +14 -5
  18. data/lib/truffler/jobs/embed_job.rb +2 -0
  19. data/lib/truffler/jobs/label_flush_job.rb +4 -2
  20. data/lib/truffler/jobs/resume_job.rb +22 -9
  21. data/lib/truffler/label_definition.rb +13 -2
  22. data/lib/truffler/labeling/backfill.rb +100 -37
  23. data/lib/truffler/labeling/labeler.rb +20 -5
  24. data/lib/truffler/labeling/queue.rb +14 -9
  25. data/lib/truffler/labeling/supplied.rb +16 -5
  26. data/lib/truffler/lenses/backfill.rb +28 -10
  27. data/lib/truffler/model.rb +5 -0
  28. data/lib/truffler/providers/backup.rb +1 -1
  29. data/lib/truffler/query_encoding/encoder.rb +10 -6
  30. data/lib/truffler/records/backfill_spend.rb +30 -6
  31. data/lib/truffler/redaction.rb +1 -1
  32. data/lib/truffler/search/encoding.rb +12 -6
  33. data/lib/truffler/search/filler.rb +31 -6
  34. data/lib/truffler/search/keystroke.rb +29 -15
  35. data/lib/truffler/search/result.rb +11 -1
  36. data/lib/truffler/search/sql.rb +70 -10
  37. data/lib/truffler/smart_search/dispatcher.rb +1 -1
  38. data/lib/truffler/smart_search/starter.rb +1 -1
  39. data/lib/truffler/version.rb +1 -1
  40. metadata +4 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3be74707295fff06a13ad0b12bbfb2d876f851893f0fff5f3f49b14c368bdb9b
4
- data.tar.gz: 59a2e7d7e57669e8ffa35eadf656cc4e52fbae6cc47798f9ae4d01a43f870109
3
+ metadata.gz: 41cc5bfdb1f4f8a5b18ab9388518140bb5b2c927c87f115094c43ffa1c37659a
4
+ data.tar.gz: 11ee26029552cfaaa18d68fed182a2ede4641f9491c942eecbf6aa86326baef8
5
5
  SHA512:
6
- metadata.gz: e71fd94ea16d17b9ca2e2f219591b51dfc94ab82f749bd21d5d277389039e6fa30f3c29130dd07c2b8aecd588abe0e1d91e8c6e70b66d199b485a77a90cc0a59
7
- data.tar.gz: b3ea709b2d26f377b3c7731e7cc020d5249780bfbc756ad1f01dde3506a542f80b34bc7e8846387527d9311cbbe0015c826ea90916fdd251fdaa596efef123c6
6
+ metadata.gz: b1bc305d0c1745424ce0c55e905a6f592a423f37274edb420def42073119de9f089ac52fded8f0af0319327e9e7e3738b41e6d62fe77ec1d398d1f7c7bddd170
7
+ data.tar.gz: 8dd567f12f014c36ac80e900a87965390cbaae8f3c3e63e588cd6668510e68afc020f8d0039198fea2c13a98aabff2425b6a5eef839c5b3be64864ca8be1e868
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.5]
4
+
5
+ Fixes from the Cora integration at Postgres scale, and two from happyhappy's 0.1.4 upgrade.
6
+
7
+ - Tenant-scoped indexing: `index_if ->(record) { ... }` and `index_scope ->(relation) { ... }` in `truffler do`, plus `config.tenant_enabled = ->(model, tenant_key) { ... }`. Records outside them, or in a disabled tenant, are never labeled, embedded or backfilled. The after-commit hooks, `Labeling::Queue`, the labeler, both backfills, lens backfills, `LabelFlushJob`, `ResumeJob` and `EmbedJob` all honor them. `BackfillJob` takes `tenant_key:`, over-cap demotion and `ResumeJob` enqueue one job per tenant, and `truffler:backfill` and `truffler:status` accept `TENANT=`.
8
+ - `Embeddings::Backfill` pages per tenant with a limited `NOT EXISTS` anti-join instead of a whole-table `NOT IN`.
9
+ - The backfill spend ledger is per tenant for tenant-scoped models (`truffler_backfill_spends.tenant_key`; `config.backfill_spend_cap_scope = :tenant`, the default, or `:app`), so `backfill_spend_cap` applies to each tenant. Existing installs: `rails g truffler:upgrade && rails db:migrate`.
10
+ - `rails g truffler:upgrade` is safe to rerun. It skips migrations already present or applied and writes only the missing ones, with no conflicts.
11
+ - Choice labels store a row only for options at or above `config.choice_min_probability` (default 0.05; `nil` stores all), plus the most likely option. Missing options read as 0.0 everywhere, and no migration is needed.
12
+ - An out-of-shape `from:` answer settles: nothing is stored for that label, the record is marked labeled, and `truffler.supplied_label_failed` fires with `permanent: true`. A raising `from:` still retries and fails after `max_attempts`.
13
+ - Postgres: upserts no longer assign `updated_at` twice (Rails 8.1 raised `PG::SyntaxError` on every live enqueue and embedding write). The suite now also runs on Postgres with pgvector in CI (`TRUFFLER_DATABASE_URL`). As a side effect, re-enqueuing an already pending row no longer refreshes its `updated_at`.
14
+ - Keystroke SQL at scale on Postgres. A `keyword` or `exact` callable that returns a relation runs once as `id = ANY(ARRAY(subquery))` instead of a hashed `IN` over every tenant row; returning an Array of ids is the documented fast path. Label-only and filtered searches add up label scores in one grouped subquery joined on `record_id` instead of a subquery per row: 120 ms p50 before, 51 ms after, for 50k records. New installs get `INCLUDE (record_id)` on `index_truffler_labels_for_search`, and `truffler:upgrade` adds it on existing Postgres installs. On Postgres, `NeighborStore` scores text from the tenant's top-K neighbors (`ORDER BY embedding <=> q LIMIT k`, default 200); `NeighborStore.new(k:, top_k:)` is new, and `config.vector_store` accepts a store instance. Records outside the top `k` get no text score. The README covers `SET LOCAL jit = off` for the keystroke transaction.
15
+ - New `invite_on_pending_encoding` declaration (default true): a model with a `keyword` source, such as a blind index, still shows the `:encoding_pending` Smart search row while a first-time query's encoding is in flight. `Result#local_weak?` keeps the backup provider off when the keyword list is strong.
16
+ - New `Truffler::Clients::Evaluator` for clients that read `schema.questions` and return an evaluation object without `to_h`, such as Cora's `TypeSafeClient`. The Cora checklist in `docs/host-integration.md` now shows it instead of the broken `Callable` line.
17
+ - A query word that names any declared label key, option key or option search-text word, applied or not, is never dropped as filler. `email` and `emails` are no longer default `config.filler_words`.
18
+ - Removing the last label chip no longer makes filler nouns required keywords while a time phrase still applies.
19
+ - A lens backfill never pages disabled tenants (filtered in SQL, so a capped `LensBackfillJob` cannot refetch them forever), and the labeler never deletes a disabled tenant's state rows; it returns them to pending at backfill priority, so re-enabling relabels only what is stale.
20
+ - Removing chips keeps declared label and option words (option search text included) as keywords, the same as the encoder and the cold-cache path.
21
+ - `truffler:status` and `Backfill.status(model, tenant_key:)` count only records inside `index_scope` and enabled tenants, and only their state rows, so a finished partial rollout reports nothing missing or pending.
22
+
3
23
  ## [0.1.4]
4
24
 
5
25
  Fixes from happyhappy production.
data/README.md CHANGED
@@ -51,6 +51,10 @@ bin/rails db:migrate
51
51
 
52
52
  The migration creates only that table and skips it if it already exists. Until you run it, backfills log one warning and cap spend per run, as 0.1.1 did.
53
53
 
54
+ 0.1.5 adds `truffler_backfill_spends.tenant_key` for per-tenant spend ledgers. The same `truffler:upgrade` command writes that migration. Until you run it, every tenant shares the model's app-wide ledger and a warning is logged once.
55
+
56
+ `truffler:upgrade` is safe to rerun. It skips any migration already in `db/migrate` or already applied to the database, and writes only the missing ones.
57
+
54
58
  Truffler digests user keys and query misses with `secret_key_base`. Rails supplies it automatically; outside Rails, set `config.secret_key_base`.
55
59
 
56
60
  ## Declaring a model
@@ -84,6 +88,7 @@ class Email < ApplicationRecord
84
88
  surface :inbox, explicit_action: :enter # :enter, :key, or :row
85
89
  ranking label: 1.0, text: 1.0, keyword: 0.5, exact: 1.0
86
90
  weak_below 3 # fewer keystroke results than this counts as weak
91
+ invite_on_pending_encoding true # Smart search row while a first-time query's encoding is in flight
87
92
  end
88
93
  end
89
94
  ```
@@ -94,9 +99,10 @@ Here is what each option does:
94
99
  - Choice `options:` may be a callable of the tenant key, which gives each tenant its own vocabulary. A tenant it gives no options (`{}` or nil) simply lacks the label: it is neither asked nor encoded there. The option name `truffler:none` is reserved (see `Truffler::NO_OPTION` below).
95
100
  - An option's value may be `{ description: "...", search: "..." }` instead of a plain description, e.g. `options: { "prod-a1" => { description: "Cora, the AI email assistant that drafts replies...", search: "Cora email assistant" } }`. Jev labels records with the description; query words are matched against the short search text (else the description), and the request state's `option_names` carries it. A per-tenant callable may return the same shape. Editing a search text never stales labels or triggers a backfill; it only changes the query-encoding cache key, so queries are re-encoded.
96
101
  - `watch :column, ...` relabels every label when one of those columns changes. Saving a record only relabels on columns that changed, so a `reads` field backed by a method (a conversation built from messages, say) needs the columns it is built from in `watch`.
97
- - `keyword` also accepts a single callable, `->(scope, tokens) { relation }`.
102
+ - `keyword` also accepts a single callable, `->(scope, tokens) { relation }`. It, and each `exact` callable, may return an Array of ids instead of a relation, which is far faster on a large tenant (see [Keystroke search at scale](#keystroke-search-at-scale)).
98
103
  - `embeddings column: :my_vector` searches a vector column you maintain yourself. Truffler never writes it.
99
104
  - `embeddings` refuses to send encrypted fields to the embedding provider unless you pass `allow_encrypted: true`.
105
+ - `invite_on_pending_encoding` (default true) shows the Smart search row with reason `:encoding_pending` while a query's first encoding is in flight, even when a `keyword` source matched. A model with no `keyword` source always does. Pass `false` to invite only on weak or empty results.
100
106
 
101
107
  `label key, type, **options` takes:
102
108
 
@@ -149,7 +155,10 @@ end
149
155
  | `:choice` | one option string (meaning 1.0 for it), or `{ option => probability }` | one row per option, `label:option`; options left out store 0.0 |
150
156
  | `:score` | a level index into `legend:` | `index / (levels - 1)`, as for Jev scores |
151
157
 
152
- `nil` stores nothing: the record reads as missing that label, not as 0. An answer out of shape (an undeclared option, a probability outside 0..1, a level past the legend) or a `from:` that raises stores nothing for that label and emits `truffler.supplied_label_failed` with the label key and error class. Rows already stored keep serving until the next good write.
158
+ `nil` stores nothing: the record reads as missing that label, not as 0. Both kinds of failure emit `truffler.supplied_label_failed` with the label key, the error class, and `permanent`:
159
+
160
+ - An answer out of shape (an undeclared option, a probability outside 0..1, a level past the legend) is permanent (`permanent: true`). It is treated like `nil`: nothing is stored for that label, earlier rows are cleared, and the record is marked labeled, so backfills do not claim it again. A later valid answer, through `watch:` or `truffler_refresh_labels!`, is written as usual.
161
+ - A `from:` that raises is transient (`permanent: false`). The record stays pending at backfill priority and is retried for free, then marked failed after `max_attempts`. Rows already stored keep serving until the next good write.
153
162
 
154
163
  Supplied labels never reach Jev. They are never in a labeling request, take no budget slot, cost nothing, and do not count toward a lens or backfill spend cap. A flush or backfill where only supplied labels are stale makes no Jev call. The labeling job writes them before it asks Jev anything, so a Jev outage or a budget denial never holds them back. Otherwise they behave like asked labels: same `truffler_labels` rows, the same filters, boosts, chips, and label vectors, and query encoding asks Jev how a query uses them (using `description:`), within the one encoding call per query.
155
164
 
@@ -168,11 +177,17 @@ The default client is `Truffler::Clients::RubyLLMTypeSafe`. It needs ruby_llm 2
168
177
  If you already have a TypeSafe client, wrap it in `Truffler::Clients::Callable`. The wrapped object must respond to `evaluate(state:, schema:)`, and may also accept `model:`. It returns either the answers hash or `{"answers" => ..., "model" => ..., "usage" => {"input_tokens" => ...}}`:
169
178
 
170
179
  ```ruby
171
- config.client = Truffler::Clients::Callable.new(TypeSafeClient.new)
180
+ config.client = Truffler::Clients::Callable.new(MyJevClient.new)
172
181
  ```
173
182
 
174
183
  `schema:` holds the questions in TypeSafe wire shape. When a response carries no token count, Truffler estimates it from the request size and flags the estimate. Errors reach you as `Truffler::ClientError`, carrying only the HTTP status and the error class name.
175
184
 
185
+ If your client takes a schema object (it calls `schema.questions`) and returns an evaluation object with `answers`, `model`, and `input_tokens` readers rather than a hash, use `Truffler::Clients::Evaluator` instead. For any other shape, subclass `Truffler::Clients::Base` and implement `perform` (see [docs/host-integration.md](docs/host-integration.md)).
186
+
187
+ ```ruby
188
+ config.client = Truffler::Clients::Evaluator.new(TypeSafeClient.new)
189
+ ```
190
+
176
191
  ## Keystroke search
177
192
 
178
193
  ```ruby
@@ -184,7 +199,7 @@ result = Email.truffler(params[:q], tenant: Current.account.id, scope: Current.a
184
199
 
185
200
  A keystroke search makes no network call. It reads the query encoding and query vector from the cache. When the cache misses, it enqueues `EncodeQueryJob`, and the next keystroke or reload picks up the result.
186
201
 
187
- Query encoding sends Jev the label vocabulary (each label's description and a choice label's option names) next to the query, and asks for each label whether the query filters on it, prefers it, or ignores it, plus the role of each word. A choice label's option question also offers `Truffler::NO_OPTION` (`"truffler:none"`), meaning the query names none of its options, so a host option literally called `none` stays filterable. Word roles are then checked locally: a word that names a label the query applies (its key, a word of its key, or the chosen option key, ignoring case and plurals or sharing their first three letters when both words have four letters or more, so "angry" names `anger`; or, matched exactly, a word of that option's display name or description) counts as naming the label, and common stopwords and `config.filler_words` (generic nouns such as "customers", "users", "emails") are dropped. They are kept only when dropping them would leave no keyword, no applied label, and no time phrase, so "customers in the last 3 hours" lists the window's records while a lone "customers" still searches text; the same rule applies before the encoding is cached. When the encoding applies a label filter, the filter decides which records match and keyword hits only rank them; without one, the remaining keywords must match.
202
+ Query encoding sends Jev the label vocabulary (each label's description and a choice label's option names) next to the query, and asks for each label whether the query filters on it, prefers it, or ignores it, plus the role of each word. A choice label's option question also offers `Truffler::NO_OPTION` (`"truffler:none"`), meaning the query names none of its options, so a host option literally called `none` stays filterable. Word roles are then checked locally: a word that names a label the query applies (its key, a word of its key, or the chosen option key, ignoring case and plurals or sharing their first three letters when both words have four letters or more, so "angry" names `anger`; or, matched exactly, a word of that option's display name or description) counts as naming the label, and common stopwords and `config.filler_words` (generic nouns such as "customers", "users", "items") are dropped. A word that names any declared label (a word of its key, of an option key, or of an option's search text), applied or not, is never dropped as filler. Filler is kept only when dropping them would leave no keyword, no applied label, and no time phrase, so "customers in the last 3 hours" lists the window's records while a lone "customers" still searches text; the same rule applies before the encoding is cached. When the encoding applies a label filter, the filter decides which records match and keyword hits only rank them; without one, the remaining keywords must match.
188
203
 
189
204
  When the searcher removes a chip, the words that named only that label (or only labels that are now all removed) become keywords again, so removing the `urgent` chip from "urgent refunds" searches for both words. A word that named a label or option key only by shared prefix ("urgently" for `urgent`) also adds a small keyword score (a quarter of the keyword weight) while its label applies, ranking records whose text contains it higher without requiring it.
190
205
 
@@ -195,6 +210,7 @@ The returned `Truffler::Search::Result` exposes:
195
210
  - `records` and `ids`.
196
211
  - `chips`: `[{key:, label:, kind: :filter | :boost | :time, name:}]`.
197
212
  - `invite_row`: `{query:, reason: :weak | :empty | :encoding_pending}` or nil.
213
+ - `local_weak?`: whether the list is too weak to stand alone (starts the backup provider). A pending encoding on a model with a `keyword` source invites Smart search without making the list weak.
198
214
  - `encoding_status`: `:cached`, `:pending`, or `:none`.
199
215
  - `watermark` and `new_matches_count`.
200
216
  - `explicit_action`: the surface's declared action.
@@ -207,6 +223,24 @@ For the "N new matches" row on a later request, pass the watermark back in:
207
223
  Email.jev_new_matches_count(params[:q], tenant: account.id, scope: account.emails, user: current_user, since: Time.iso8601(params[:since]))
208
224
  ```
209
225
 
226
+ ### Keystroke search at scale
227
+
228
+ The keystroke query is shaped so a large tenant (tens of thousands of records) stays fast on Postgres:
229
+
230
+ - Return ids from `keyword` and `exact` callables when you can, e.g. `.limit(2_000).pluck(:id)` from a blind index. Ids become a literal `IN (...)` list. A returned relation is rendered as `id = ANY(ARRAY(subquery))` on Postgres (plain `IN (subquery)` elsewhere), so it runs once instead of as a hashed filter over every tenant row, but the id list is still faster.
231
+ - Label-only and filtered searches, where every record past the tenant and filters is a candidate, read label scores from one grouped aggregate over `truffler_labels` joined on `record_id`, never a subquery per row. New installs get `index_truffler_labels_for_search` with `INCLUDE (record_id)`, which makes that aggregate an index-only scan. On an existing Postgres install, `bin/rails generate truffler:upgrade && bin/rails db:migrate` adds it (built concurrently, then the old index is dropped). It is optional: the grouped aggregate already replaces the per-row subquery, and the index only saves heap reads.
232
+ - With embeddings on Postgres, text similarity comes from the tenant's top `k` neighbors (`ORDER BY embedding <=> q LIMIT k`), joined on `record_id`. An HNSW index on `truffler_embeddings.embedding` serves it. Records outside the top `k` score no text similarity; see `vector_store` under [Configuration](#configuration).
233
+ - The plans these queries produce are costed high enough that Postgres JIT often compiles them, which can add 0.3 to 0.9 s to a query that runs in tens of milliseconds. Turn JIT off for the keystroke only:
234
+
235
+ ```ruby
236
+ result = Email.transaction do
237
+ Email.connection.execute("SET LOCAL jit = off")
238
+ Email.truffler(params[:q], tenant: account.id, scope: account.emails, user: current_user)
239
+ end
240
+ ```
241
+
242
+ `SET LOCAL` lasts until the transaction ends, so other queries keep JIT. `result.records` is loaded inside the block.
243
+
210
244
  ## Smart search and streaming
211
245
 
212
246
  The searcher's explicit action (the `explicit_action` their surface declares) starts a Smart run:
@@ -341,12 +375,12 @@ Set these in `Truffler.configure do |config| ... end`.
341
375
  | `max_field_chars`, `request_token_budget`, `max_questions_per_request` | 4,000, 48,000, 200 | Request packing limits. |
342
376
  | `queue_name` | `:default` | Queue for every Truffler job. |
343
377
  | `cost_per_million_tokens` | 0.042 | Jev input price, used in usage events and estimates. |
344
- | `backfill_spend_cap` | 5.0 | Dollar cap on backfill spend per model and vocabulary version, shared by `BackfillJob` chains, `ResumeJob` backfills, and `truffler:backfill` runs (see Backfill). `nil` disables it; for the rake task, `SPEND_CAP=none` does. Supplied labels cost nothing and are still written once it is reached. |
378
+ | `backfill_spend_cap` | 5.0 | Dollar cap on backfill spend per model (per tenant for tenant-scoped models; see `backfill_spend_cap_scope`) and vocabulary version, shared by `BackfillJob` chains, `ResumeJob` backfills, and `truffler:backfill` runs (see Backfill). `nil` disables it; for the rake task, `SPEND_CAP=none` does. Supplied labels cost nothing and are still written once it is reached. |
345
379
  | `resume_pending_after` | 5 minutes | How long before `ResumeJob` treats work as stuck. |
346
380
  | `embedder` | `Embeddings::RubyLLMEmbedder.new` | Any `Embeddings::Embedder` subclass. The default calls `RubyLLM.embed`, which works on ruby_llm 1.x and 2. |
347
381
  | `embedding_cost_per_million_tokens` | 0.02 | Embedding price. |
348
- | `vector_store` | `:auto` | `:neighbor` (pgvector `<=>`, or sqlite-vec `vec_distance_cosine` when you load the extension), `:ruby` (exact cosine in Ruby), or `:auto` (neighbor when available, otherwise Ruby). A model declaring `embeddings column:` always reads its own column. |
349
- | `filler_words` | `customer(s) people person user(s) message(s) email(s) item(s) stuff thing(s)` | Generic nouns never required as keywords on their own (matched ignoring plurals). Replace the list or extend it (`config.filler_words += %w[ticket]`). |
382
+ | `vector_store` | `:auto` | `:neighbor` (pgvector `<=>`, or sqlite-vec `vec_distance_cosine` when you load the extension), `:ruby` (exact cosine in Ruby), or `:auto` (neighbor when available, otherwise Ruby). Or a store instance, e.g. `Truffler::Embeddings::NeighborStore.new(k: 500)` or your own `VectorStore` subclass. On Postgres the neighbor store scores text from the tenant's top `k` (default 200) neighbors; `NeighborStore.new(top_k: false)` scores every row exactly. A model declaring `embeddings column:` always reads its own column. |
383
+ | `filler_words` | `customer(s) people person user(s) message(s) item(s) stuff thing(s)` | Generic nouns never required as keywords on their own (matched ignoring plurals). Replace the list or extend it (`config.filler_words += %w[ticket]`). |
350
384
  | `encoding_prefetch` | `QueryEncoding::Prefetch.new` | Cache-miss hook, called as `call(model, query, cache_key:, tenant_key:, user_key:)`. |
351
385
  | `encoding_deadline` | 1.0 | Seconds a Smart run waits for an in-flight query encoding. |
352
386
  | `rerank_depth`, `rerank_chunk_size`, `rerank_max_field_chars` | 30, 10, 1,200 | Candidates reranked, candidates per Jev request, characters per field sent. |
@@ -358,6 +392,9 @@ Set these in `Truffler.configure do |config| ... end`.
358
392
  | `lenses.creators`, `lenses.authorize_lens`, `lenses.proposals` | `:developers`, nil, false | Lens policy (see Lenses). |
359
393
  | `lenses.spend_cap_usd`, `lenses.sample_size`, `lenses.max_questions`, `lenses.expire_after` | 1.0, 20, 8, 30 days | Lens limits. |
360
394
  | `lenses.generator`, `lenses.drafter_model`, `lenses.user_key` | `RubyLLMGenerator`, nil, `"User:42"` style | Drafting model seam and user key mapping. |
395
+ | `tenant_enabled` | nil (every tenant) | `->(model, tenant_key) { ... }`, asked for tenant-scoped models only. A disabled tenant is never labeled, embedded, or backfilled (see Indexing only some tenants). |
396
+ | `backfill_spend_cap_scope` | `:tenant` | `:tenant` keeps a spend ledger per tenant for tenant-scoped models, so `backfill_spend_cap` applies to each tenant. `:app` keeps one ledger per model. Unscoped models always use one. |
397
+ | `choice_min_probability` | 0.05 | Choice labels store a row only for options at or above this probability, plus the most likely option. A missing option reads as 0.0 in filters, boosts, label vectors, and contributions. `nil` stores every option. No migration is needed: rows written earlier stay until their record is relabeled. |
361
398
 
362
399
  ## Jobs to schedule
363
400
 
@@ -396,10 +433,36 @@ truffler_expire_lenses:
396
433
  |---|---|
397
434
  | `SPEND_CAP=20` or `none` | Overrides `backfill_spend_cap` for this run. |
398
435
  | `MAX_DURATION=600` | Stops after that many seconds with `paused` and the cursor. Rerun to continue. |
399
- | `RESET_SPEND=1` | Zeroes the spend recorded for the current vocabulary version before starting. |
436
+ | `RESET_SPEND=1` | Zeroes the spend recorded for the current vocabulary version before starting (every tenant's ledger when no `TENANT` is given). |
437
+ | `TENANT=42` | Backfills only that tenant, against that tenant's ledger. `truffler:status` takes it too, to print that tenant's spend. |
400
438
 
401
439
  The spend cap holds across runs. Truffler records backfill spend per model and app-wide vocabulary version in `truffler_backfill_spends`, and reserves each request's estimate against the cap in SQL. A rerun, a `ResumeJob` backfill, and overlapping `BackfillJob` chains all draw on the same total, so together they stop at `backfill_spend_cap`. Changing the vocabulary (a reworded question, a new label, or an activated lens) starts a new total. Lens backfills are capped separately by each lens's `spend_cap_usd`. `BackfillJob` reschedules itself after a denial with the same backoff. In code, `Truffler::Labeling::Backfill.new(Email).run(wait: true, max_duration: 600)` does what the task does.
402
440
 
441
+ For tenant-scoped models the ledger is per tenant (`backfill_spend_cap_scope :tenant`, the default), so the cap applies to each tenant. A whole-model run skips a tenant once its ledger reaches the cap, keeps labeling the others, and ends with `spend_cap_reached`. A tenant run (`TENANT=`, or `BackfillJob.perform_later("Email", tenant_key: "42")`) stops at that tenant's cap. `ResumeJob` and the flush job's over-cap demotion enqueue one `BackfillJob` per tenant.
442
+
443
+ ### Indexing only some tenants
444
+
445
+ For a per-account rollout, or to leave some records out, declare which records Truffler indexes:
446
+
447
+ ```ruby
448
+ truffler do
449
+ tenant :account_id
450
+ # ...
451
+ index_if ->(email) { !email.spam? } # single records: after-commit hooks, Queue, EmbedJob
452
+ index_scope ->(relation) { relation.where(spam: false) } # batch paths: backfills and sweeps
453
+ end
454
+
455
+ Truffler.configure do |config|
456
+ config.tenant_enabled = ->(model, tenant_key) { Account.search_enabled?(tenant_key) }
457
+ end
458
+ ```
459
+
460
+ - The after-commit label and embed hooks skip records that are not indexable: `index_if` rejects them or their tenant is disabled. No state row or job is created.
461
+ - `Labeling::Backfill`, `Embeddings::Backfill`, and lens backfills page only over `index_scope` and skip disabled tenants. The labeler drops claimed records that are no longer indexable instead of labeling them.
462
+ - `index_if` and `index_scope` should select the same records. Keep `index_scope` index-friendly, because backfills page over it.
463
+ - The `ResumeJob` embedding sweep runs tenant by tenant over the enabled tenants that have records in `index_scope`. Each tenant pass is a `NOT EXISTS` anti-join limited to the sweep size, not a `NOT IN` over the table.
464
+ - Stored labels of a tenant you disable stay in place and keep serving search. When you re-enable the tenant, run `truffler:backfill` with `TENANT=` for it.
465
+
403
466
  ## Privacy
404
467
 
405
468
  These guarantees hold for every model, and matter most for models that use Active Record encryption:
@@ -11,7 +11,7 @@ class CreateTrufflerTables < ActiveRecord::Migration<%= migration_version %>
11
11
  end
12
12
  add_index :truffler_labels, [:record_type, :record_id, :label_key], unique: true,
13
13
  name: "index_truffler_labels_on_record_and_label"
14
- add_index :truffler_labels, [:record_type, :tenant_key, :label_key, :value],
14
+ add_index :truffler_labels, [:record_type, :tenant_key, :label_key, :value], include: [:record_id],
15
15
  name: "index_truffler_labels_for_search"
16
16
 
17
17
  create_table :truffler_record_states do |t|
@@ -108,12 +108,15 @@ class CreateTrufflerTables < ActiveRecord::Migration<%= migration_version %>
108
108
 
109
109
  create_table :truffler_backfill_spends do |t|
110
110
  t.string :record_type, null: false
111
+ t.string :tenant_key
111
112
  t.string :vocabulary_version, null: false
112
113
  t.float :spent_usd, null: false, default: 0.0
113
114
  t.integer :requests, null: false, default: 0
114
115
  t.timestamps
115
116
  end
116
- add_index :truffler_backfill_spends, [:record_type, :vocabulary_version], unique: true,
117
- name: "index_truffler_backfill_spends_on_ledger"
117
+ add_index :truffler_backfill_spends, [:record_type, :tenant_key, :vocabulary_version], unique: true,
118
+ name: "index_truffler_backfill_spends_on_tenant_ledger"
119
+ add_index :truffler_backfill_spends, [:record_type, :vocabulary_version], unique: true, where: "tenant_key IS NULL",
120
+ name: "index_truffler_backfill_spends_on_app_ledger"
118
121
  end
119
122
  end
@@ -0,0 +1,25 @@
1
+ class AddTenantKeyToTrufflerBackfillSpends < ActiveRecord::Migration<%= migration_version %>
2
+ def up
3
+ add_column :truffler_backfill_spends, :tenant_key, :string unless column_exists?(:truffler_backfill_spends, :tenant_key)
4
+ if index_name_exists?(:truffler_backfill_spends, "index_truffler_backfill_spends_on_ledger")
5
+ remove_index :truffler_backfill_spends, name: "index_truffler_backfill_spends_on_ledger"
6
+ end
7
+ unless index_name_exists?(:truffler_backfill_spends, "index_truffler_backfill_spends_on_tenant_ledger")
8
+ add_index :truffler_backfill_spends, [:record_type, :tenant_key, :vocabulary_version], unique: true,
9
+ name: "index_truffler_backfill_spends_on_tenant_ledger"
10
+ end
11
+ unless index_name_exists?(:truffler_backfill_spends, "index_truffler_backfill_spends_on_app_ledger")
12
+ add_index :truffler_backfill_spends, [:record_type, :vocabulary_version], unique: true, where: "tenant_key IS NULL",
13
+ name: "index_truffler_backfill_spends_on_app_ledger"
14
+ end
15
+ end
16
+
17
+ def down
18
+ execute "DELETE FROM truffler_backfill_spends WHERE tenant_key IS NOT NULL" if column_exists?(:truffler_backfill_spends, :tenant_key)
19
+ remove_index :truffler_backfill_spends, name: "index_truffler_backfill_spends_on_tenant_ledger", if_exists: true
20
+ remove_index :truffler_backfill_spends, name: "index_truffler_backfill_spends_on_app_ledger", if_exists: true
21
+ remove_column :truffler_backfill_spends, :tenant_key, if_exists: true
22
+ add_index :truffler_backfill_spends, [:record_type, :vocabulary_version], unique: true,
23
+ name: "index_truffler_backfill_spends_on_ledger", if_not_exists: true
24
+ end
25
+ end
@@ -0,0 +1,32 @@
1
+ class CoverTrufflerLabelsForSearch < ActiveRecord::Migration<%= migration_version %>
2
+ disable_ddl_transaction!
3
+
4
+ COVERING = "index_truffler_labels_for_search_covering".freeze
5
+ COLUMNS = [ :record_type, :tenant_key, :label_key, :value ].freeze
6
+
7
+ def up
8
+ return unless postgres? && !covered?
9
+
10
+ add_index :truffler_labels, COLUMNS, include: [ :record_id ], name: COVERING, algorithm: :concurrently
11
+ remove_index :truffler_labels, name: "index_truffler_labels_for_search", algorithm: :concurrently, if_exists: true
12
+ end
13
+
14
+ def down
15
+ return unless postgres? && index_name_exists?(:truffler_labels, COVERING)
16
+
17
+ add_index :truffler_labels, COLUMNS, name: "index_truffler_labels_for_search", algorithm: :concurrently,
18
+ if_not_exists: true
19
+ remove_index :truffler_labels, name: COVERING, algorithm: :concurrently
20
+ end
21
+
22
+ private
23
+
24
+ def postgres?
25
+ connection.adapter_name.match?(/postg/i)
26
+ end
27
+
28
+ def covered?
29
+ index_name_exists?(:truffler_labels, COVERING) ||
30
+ select_value("SELECT indexdef FROM pg_indexes WHERE indexname = 'index_truffler_labels_for_search'").to_s.include?("INCLUDE")
31
+ end
32
+ end
@@ -3,19 +3,65 @@ require "rails/generators/active_record"
3
3
 
4
4
  module Truffler
5
5
  module Generators
6
- # Adds the tables a newer Truffler needs to an app installed with an older
7
- # one. Each migration skips a table that already exists.
6
+ # Adds the tables and columns a newer Truffler needs to an app installed
7
+ # with an older one. Safe to rerun: a step is skipped when db/migrate
8
+ # already holds a migration of that name or the database already has
9
+ # what it adds, so only missing migrations are written. Each migration
10
+ # also skips a table, column, or index that already exists.
8
11
  class UpgradeGenerator < Rails::Generators::Base
9
12
  include ActiveRecord::Generators::Migration
10
13
 
11
14
  source_root File.expand_path("templates", __dir__)
12
15
 
16
+ class_attribute :schema_connection, default: -> { ActiveRecord::Base.connection }
17
+
13
18
  def create_backfill_spends_migration
14
- migration_template "backfill_spends_migration.rb.tt", File.join(db_migrate_path, "create_truffler_backfill_spends.rb")
19
+ add_migration "backfill_spends_migration.rb.tt", "create_truffler_backfill_spends" do |connection|
20
+ connection.table_exists?(:truffler_backfill_spends)
21
+ end
22
+ end
23
+
24
+ def create_backfill_spends_tenant_key_migration
25
+ add_migration "backfill_spends_tenant_key_migration.rb.tt", "add_tenant_key_to_truffler_backfill_spends" do |connection|
26
+ connection.column_exists?(:truffler_backfill_spends, :tenant_key)
27
+ end
28
+ end
29
+
30
+ # Postgres only: the 0.1.5 covering index that makes label-only ranking
31
+ # an index-only scan. Other databases and installs that already have it
32
+ # skip the step.
33
+ def create_labels_search_covering_migration
34
+ add_migration "labels_search_covering_migration.rb.tt", "cover_truffler_labels_for_search" do |connection|
35
+ !connection.adapter_name.match?(/postg/i) || labels_search_covered?(connection)
36
+ end
15
37
  end
16
38
 
17
39
  private
18
40
 
41
+ def labels_search_covered?(connection)
42
+ connection.index_name_exists?(:truffler_labels, "index_truffler_labels_for_search_covering") ||
43
+ connection.select_value("SELECT indexdef FROM pg_indexes WHERE indexname = 'index_truffler_labels_for_search'").to_s.include?("INCLUDE")
44
+ end
45
+
46
+ def add_migration(template, name, &applied)
47
+ existing = self.class.migration_exists?(File.join(destination_root, db_migrate_path), name)
48
+ if existing
49
+ say_status :skip, "#{name} (#{File.basename(existing)} exists)", :yellow
50
+ elsif schema_applied?(&applied)
51
+ say_status :skip, "#{name} (already in the database)", :yellow
52
+ else
53
+ migration_template template, File.join(db_migrate_path, "#{name}.rb")
54
+ end
55
+ end
56
+
57
+ # Without a database (not configured, not created yet) every step counts
58
+ # as missing; the migrations themselves are no-ops where already applied.
59
+ def schema_applied?
60
+ yield schema_connection.call
61
+ rescue ActiveRecord::ActiveRecordError
62
+ false
63
+ end
64
+
19
65
  def migration_version
20
66
  "[#{ActiveRecord::Migration.current_version}]"
21
67
  end
@@ -27,40 +27,55 @@ namespace :truffler do
27
27
 
28
28
  describe_cursor = ->(cursor) { cursor.nil? ? "none" : cursor }
29
29
 
30
+ resolve_tenant = ->(value) { value.to_s.strip.presence }
31
+
32
+ describe_model = ->(model, tenant_key) { tenant_key ? "#{model.name} (tenant #{tenant_key})" : model.name }
33
+
30
34
  desc "Backfill stale, missing, and failed labels for a model, waiting out budget denials " \
31
- "(SPEND_CAP=dollars or none; default config.backfill_spend_cap; MAX_DURATION=seconds; RESET_SPEND=1 for a fresh spend ledger)"
35
+ "(TENANT=key for one tenant; SPEND_CAP=dollars or none; default config.backfill_spend_cap; MAX_DURATION=seconds; " \
36
+ "RESET_SPEND=1 for a fresh spend ledger)"
32
37
  task :backfill, [ :model ] => :setup do |_, args|
33
38
  model = resolve_model.call(args[:model])
39
+ tenant_key = resolve_tenant.call(ENV.fetch("TENANT", nil))
40
+ name = describe_model.call(model, tenant_key)
34
41
  spend_cap = resolve_spend_cap.call(ENV.fetch("SPEND_CAP", nil))
35
42
  max_duration = resolve_max_duration.call(ENV.fetch("MAX_DURATION", nil))
36
43
  if ENV.fetch("RESET_SPEND", nil) == "1"
37
- Truffler::Labeling::Backfill.reset_spend!(model)
38
- puts "#{model.name}: fresh spend ledger for the current vocabulary version"
44
+ ledger_tenant = model.truffler_definition.ledger_tenant(tenant_key)
45
+ all_tenants = ledger_tenant.nil? && !model.truffler_definition.ledger_tenant("").nil?
46
+ Truffler::Labeling::Backfill.reset_spend!(model, tenant_key: ledger_tenant, all_tenants: all_tenants)
47
+ puts all_tenants ? "#{name}: fresh spend ledgers for every tenant" : "#{name}: fresh spend ledger for the current vocabulary version"
39
48
  end
40
49
  progress = lambda do |so_far, delay|
41
- puts "#{model.name}: waiting #{format('%.1f', delay)}s for backfill budget (#{so_far.labeled} labeled, " \
50
+ puts "#{name}: waiting #{format('%.1f', delay)}s for backfill budget (#{so_far.labeled} labeled, " \
42
51
  "$#{format('%.6f', so_far.cost)} spent, cursor #{describe_cursor.call(so_far.cursor)})"
43
52
  end
44
- result = Truffler::Labeling::Backfill.new(model, spend_cap: spend_cap).run(wait: true, max_duration: max_duration, progress: progress)
45
- summary = "#{model.name}: #{result.status}, #{result.labeled} labeled in #{result.requests} requests, $#{format('%.6f', result.cost)}"
53
+ result = Truffler::Labeling::Backfill.new(model, tenant_key: tenant_key, spend_cap: spend_cap)
54
+ .run(wait: true, max_duration: max_duration, progress: progress)
55
+ summary = "#{name}: #{result.status}, #{result.labeled} labeled in #{result.requests} requests, $#{format('%.6f', result.cost)}"
46
56
  summary += ", cursor #{describe_cursor.call(result.cursor)}" if result.status == :paused
47
57
  puts summary
48
58
  end
49
59
 
50
- print_status = lambda do |model|
51
- puts model.name
60
+ print_status = lambda do |model, tenant_key = nil|
61
+ puts describe_model.call(model, tenant_key)
52
62
  Truffler::Labeling::Backfill.status(model).each { |key, count| puts format(" %-9s %d", key, count) }
53
- if Truffler::Records::BackfillSpend.available?
54
- ledger = Truffler::Labeling::Backfill.spend(model)
63
+ ledger_tenant = model.truffler_definition.ledger_tenant(tenant_key)
64
+ if Truffler::Records::BackfillSpend.available? && Truffler::Records::BackfillSpend.tenant_ledgers? &&
65
+ model.truffler_definition.ledger_tenant("") && ledger_tenant.nil?
66
+ puts format(" %-9s %s", "spent", "per tenant; pass TENANT=key")
67
+ elsif Truffler::Records::BackfillSpend.available?
68
+ ledger = Truffler::Labeling::Backfill.spend(model, tenant_key: ledger_tenant)
55
69
  cap = Truffler.config.backfill_spend_cap
56
70
  puts format(" %-9s $%.6f in %d requests (vocabulary %s, cap %s)", "spent", ledger&.spent_usd.to_f, ledger&.requests.to_i,
57
- Truffler::Labeling::Backfill.ledger_version(model).first(12), cap ? format("$%.2f", cap) : "none")
71
+ Truffler::Labeling::Backfill.ledger_version(model, ledger_tenant).first(12), cap ? format("$%.2f", cap) : "none")
58
72
  else
59
73
  puts format(" %-9s %s", "spent", "not tracked across runs; run bin/rails g truffler:upgrade && bin/rails db:migrate")
60
74
  end
61
75
  end
62
76
 
63
- desc "Print a model's labeling counts by status and staleness (every registered Truffler model when none is named)"
77
+ desc "Print a model's labeling counts by status and staleness (every registered Truffler model when none is named; " \
78
+ "TENANT=key for a tenant's spend ledger)"
64
79
  task :status, [ :model ] => :setup do |_, args|
65
80
  if args[:model].to_s.strip.empty?
66
81
  Rails.application.eager_load! if defined?(Rails.application) && Rails.application
@@ -68,7 +83,7 @@ namespace :truffler do
68
83
  abort "No Truffler models are registered" if models.empty?
69
84
  models.each(&print_status)
70
85
  else
71
- print_status.call(resolve_model.call(args[:model]))
86
+ print_status.call(resolve_model.call(args[:model]), resolve_tenant.call(ENV.fetch("TENANT", nil)))
72
87
  end
73
88
  end
74
89
  end
@@ -223,7 +223,7 @@ module Truffler
223
223
  failures = @dataset.injections.filter_map do |injection|
224
224
  clean = stored[injection.clean_id]
225
225
  twin = stored[injection.record.id]
226
- changed = (clean.keys | twin.keys).reject { |key| Metrics.agree?(clean[key], twin[key], tolerance) }
226
+ changed = (clean.keys | twin.keys).reject { |key| Metrics.agree?(clean.fetch(key, 0.0), twin.fetch(key, 0.0), tolerance) }
227
227
  next if changed.empty?
228
228
 
229
229
  { "fixture" => injection.id, "clean_id" => injection.clean_id, "twin_id" => injection.record.id,
@@ -0,0 +1,44 @@
1
+ module Truffler
2
+ module Clients
3
+ # Wraps a host client whose `evaluate(state:, schema:)` takes a schema
4
+ # object (it reads `schema.questions`) and returns an evaluation object
5
+ # with `answers`, `model`, and `input_tokens` (or a `usage` hash) readers
6
+ # instead of a hash, such as Cora's TypeSafeClient and its
7
+ # TypeSafe::Evaluation. The schema also reads like the question hash, so
8
+ # a client that treats it as a Hash works too. The pinned model is passed
9
+ # when the host's method accepts `model:`.
10
+ #
11
+ # config.client = Truffler::Clients::Evaluator.new(TypeSafeClient.new)
12
+ class Evaluator < Callable
13
+ Schema = Data.define(:questions) do
14
+ delegate :[], :each, :keys, :size, :empty?, :as_json, :to_json, to: :questions
15
+
16
+ def ids
17
+ questions.keys
18
+ end
19
+
20
+ def to_h
21
+ questions
22
+ end
23
+ end
24
+
25
+ def perform(state:, questions:, model:)
26
+ response(super(state: state, questions: Schema.new(questions: questions), model: model))
27
+ end
28
+
29
+ private
30
+
31
+ def response(evaluation)
32
+ return evaluation if evaluation.is_a?(Hash)
33
+
34
+ tokens = evaluation.try(:input_tokens) || usage_tokens(evaluation.try(:usage))
35
+ { "answers" => evaluation.answers.to_h, "model" => evaluation.try(:model),
36
+ "usage" => ({ "input_tokens" => tokens } if tokens) }.compact
37
+ end
38
+
39
+ def usage_tokens(usage)
40
+ usage.is_a?(Hash) ? usage.with_indifferent_access[:input_tokens] : usage.try(:input_tokens)
41
+ end
42
+ end
43
+ end
44
+ end
@@ -19,6 +19,12 @@ module Truffler
19
19
  :smart_run_ttl, :smart_candidate_pool, :broadcaster
20
20
  # Generic nouns that are never required keywords on their own (Search::Filler).
21
21
  attr_accessor :filler_words
22
+ # ->(model, tenant_key) { true/false } for tenant-scoped models; nil indexes every tenant.
23
+ attr_accessor :tenant_enabled
24
+ # :tenant (a spend ledger per tenant for scoped models) or :app (one per model).
25
+ attr_accessor :backfill_spend_cap_scope
26
+ # Choice options below this probability store no row and read as 0.0 (nil stores every option).
27
+ attr_accessor :choice_min_probability
22
28
 
23
29
  def initialize(env: ENV)
24
30
  @model = "jev-latest"
@@ -53,6 +59,9 @@ module Truffler
53
59
  @smart_candidate_pool = 200
54
60
  @broadcaster = nil
55
61
  @filler_words = Search::Filler::DEFAULT_WORDS.dup
62
+ @tenant_enabled = nil
63
+ @backfill_spend_cap_scope = :tenant
64
+ @choice_min_probability = 0.05
56
65
  end
57
66
 
58
67
  def client
@@ -116,6 +116,42 @@ module Truffler
116
116
  @weak_below || DEFAULT_WEAK_BELOW
117
117
  end
118
118
 
119
+ attr_accessor :index_if, :index_scope
120
+
121
+ # config.tenant_enabled is asked only for tenant-scoped models; an
122
+ # unscoped model is always enabled.
123
+ def tenant_enabled?(tenant_key)
124
+ check = Truffler.config.tenant_enabled
125
+ return true if check.nil? || !scoped?
126
+
127
+ check.call(model, tenant_key) ? true : false
128
+ end
129
+
130
+ # Whether the after-commit hooks, Queue, and EmbedJob handle this record:
131
+ # its tenant is enabled and `index_if` (when declared) accepts it.
132
+ def indexable?(record)
133
+ tenant_enabled?(tenant_key_for(record)) && (index_if.nil? || index_if.call(record) ? true : false)
134
+ end
135
+
136
+ # The relation the batch paths (backfills, sweeps) page over.
137
+ def index_relation(relation = model.all)
138
+ index_scope ? index_scope.call(relation) : relation
139
+ end
140
+
141
+ # The tenant a backfill spend ledger row belongs to: the tenant for
142
+ # scoped models under backfill_spend_cap_scope :tenant, else nil (app-wide).
143
+ def ledger_tenant(tenant_key)
144
+ tenant_key if scoped? && Truffler.config.backfill_spend_cap_scope.to_sym == :tenant
145
+ end
146
+
147
+ attr_writer :invite_on_pending_encoding
148
+
149
+ # Whether a model with a `keyword` source shows the Smart search row while
150
+ # the query's encoding is in flight (AE10). Default true.
151
+ def invite_on_pending_encoding
152
+ @invite_on_pending_encoding.nil? || @invite_on_pending_encoding
153
+ end
154
+
119
155
  private
120
156
 
121
157
  def table_available?
@@ -204,6 +240,22 @@ module Truffler
204
240
  def weak_below(count)
205
241
  @definition.weak_below = Integer(count)
206
242
  end
243
+
244
+ def index_if(callable)
245
+ raise DefinitionError, "index_if must be callable with the record" unless callable.respond_to?(:call)
246
+
247
+ @definition.index_if = callable
248
+ end
249
+
250
+ def index_scope(callable)
251
+ raise DefinitionError, "index_scope must be callable with a relation" unless callable.respond_to?(:call)
252
+
253
+ @definition.index_scope = callable
254
+ end
255
+
256
+ def invite_on_pending_encoding(enabled)
257
+ @definition.invite_on_pending_encoding = enabled ? true : false
258
+ end
207
259
  end
208
260
  end
209
261
  end