robot-resources 1.12.3 → 1.12.4
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/lib/non-oc-wizard.js +3 -5
- package/package.json +1 -1
package/lib/non-oc-wizard.js
CHANGED
|
@@ -131,16 +131,14 @@ async function showPythonPath() {
|
|
|
131
131
|
info(` Detected SDKs: ${result.sdks.join(', ')}`);
|
|
132
132
|
}
|
|
133
133
|
blank();
|
|
134
|
-
info('
|
|
135
|
-
info('
|
|
136
|
-
info('
|
|
134
|
+
info('Run your Python agent — every anthropic / openai / google_generativeai');
|
|
135
|
+
info('SDK call routes through Robot Resources automatically.');
|
|
136
|
+
info('To opt out for a single command: RR_AUTOATTACH=0 python your-script.py');
|
|
137
137
|
} else {
|
|
138
138
|
warn(result.message);
|
|
139
139
|
blank();
|
|
140
140
|
info('Manual install (run inside your venv):');
|
|
141
141
|
info(' pip install --upgrade robot-resources');
|
|
142
|
-
info('Then set:');
|
|
143
|
-
info(' export RR_AUTOATTACH=1');
|
|
144
142
|
}
|
|
145
143
|
blank();
|
|
146
144
|
info('Docs: https://robotresources.ai/docs/crewai');
|