@o-lang/olang 1.0.24 → 1.0.25

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/package.json +1 -1
  2. package/src/runtime.js +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o-lang/olang",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "author": "Olalekan Ogundipe <info@workfily.com>",
5
5
  "description": "O-Lang: A governance language for user-directed, rule-enforced agent workflows",
6
6
  "main": "./src/index.js",
package/src/runtime.js CHANGED
@@ -346,10 +346,11 @@ class RuntimeAPI {
346
346
  };
347
347
 
348
348
  // ✅ Check for Advanced Evolution Service (paid tier)
349
- if (process.env.OLANG_EVOLUTION_API_KEY) {
350
- evolutionResult.status = 'advanced_evolution_enabled';
351
- evolution resultList.message = 'Advanced evolution service would process this request';
352
- }
349
+ // ✅ Check for Advanced Evolution Service (paid tier)
350
+ if (process.env.OLANG_EVOLUTION_API_KEY) {
351
+ evolutionResult.status = 'advanced_evolution_enabled';
352
+ evolutionResult.message = 'Advanced evolution service would process this request';
353
+ }
353
354
 
354
355
  if (step.saveAs) {
355
356
  this.context[step.saveAs] = evolutionResult;