Create the automation component

This commit is contained in:
derek.holloway
2026-03-11 14:34:09 -07:00
parent d9fd9b2581
commit 965ab8f362
4 changed files with 83 additions and 70 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ namespace Controllers.PythonInterop {
string _PyPath = "";
string _ExecPath = "";
public AIModule() {
_PyPath = "/usr/bin/python3.11";
public AIModule(string pypath = "/usr/bin/python3.11") {
_PyPath = pypath;
_ExecPath = $"{Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "AIPython")}";
}