theprogrammablemind 8.8.0 → 8.9.0-beta.0
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/client.js +1 -1
- package/package.json +1 -1
package/client.js
CHANGED
@@ -873,7 +873,7 @@ const defaultInnerProcess = (config, errorHandler, responses) => {
|
|
873
873
|
console.log('')
|
874
874
|
const screen_width = process.stdout.columns
|
875
875
|
// || 0 for when running without a console
|
876
|
-
const widths = [
|
876
|
+
const widths = [70, 10, Math.max(80, screen_width-71 || 0)]
|
877
877
|
const lines = new Lines(widths)
|
878
878
|
lines.setElement(0, 0, '--- The paraphrases are ----------')
|
879
879
|
lines.setElement(0, 2, '--- The response strings are ----------')
|