replicas-cli 0.2.512 → 0.2.513

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 (2) hide show
  1. package/dist/index.mjs +13 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -9277,6 +9277,7 @@ Use this when:
9277
9277
  - The user asks for ClickHouse analytics or PostHog product data
9278
9278
  - The user asks to invoke a connected Modal function
9279
9279
  - The user asks to query or update a connected turbopuffer namespace
9280
+ - The user asks to analyze text with Pangram
9280
9281
  - The user asks for Stripe customers, payments, invoices, subscriptions, or balances`;
9281
9282
  var REFERENCE9 = `# Plugins
9282
9283
 
@@ -9359,6 +9360,17 @@ const results = await replicas.turbopuffer.query('products', {
9359
9360
  \`\`\`
9360
9361
 
9361
9362
  \`write\` mutates namespace data. Confirm the requested change before calling it.
9363
+
9364
+ ## Pangram
9365
+
9366
+ Pangram is a native integration. Text sent to either method is processed by Pangram and consumes the connected account's credits:
9367
+
9368
+ \`\`\`ts
9369
+ const detection = await replicas.pangram.detect({ text });
9370
+ const plagiarism = await replicas.pangram.plagiarism(text);
9371
+ \`\`\`
9372
+
9373
+ Do not send private or sensitive text without the user's authorization.
9362
9374
  `;
9363
9375
  var PLUGINS_ABILITY = {
9364
9376
  label: "Plugins",
@@ -9844,7 +9856,7 @@ function formatTurnElapsed(ms) {
9844
9856
  }
9845
9857
 
9846
9858
  // ../shared/src/cli-version.ts
9847
- var CLI_VERSION = "0.2.512";
9859
+ var CLI_VERSION = "0.2.513";
9848
9860
 
9849
9861
  // ../shared/src/version.ts
9850
9862
  function compareVersions(v1, v2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.512",
3
+ "version": "0.2.513",
4
4
  "description": "CLI for managing Replicas workspaces - SSH into cloud dev environments with automatic port forwarding",
5
5
  "main": "dist/index.mjs",
6
6
  "bin": {