@o-lang/olang 1.2.27 → 1.2.28

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o-lang/olang",
3
- "version": "1.2.27",
3
+ "version": "1.2.28",
4
4
  "author": "Olalekan Ogundipe <info@olang.cloud>",
5
5
  "description": "O-Lang: A governance language for user-directed, rule-enforced agent workflows",
6
6
  "main": "./src/runtime/index.js",
@@ -729,7 +729,7 @@ class RuntimeAPI {
729
729
  // -----------------------------
730
730
  _validateInputs(inputs) {
731
731
  // Only scan specific input fields that contain user text
732
- const fieldsToScan = ['user_message', 'user_question', 'text', 'prompt', 'document_text'];
732
+ const fieldsToScan = ['user_message', 'user_question', 'text', 'prompt'];
733
733
 
734
734
  for (const field of fieldsToScan) {
735
735
  const text = inputs[field];