Skip to content

Commit 8a84eb1

Browse files
committed
fix typo, changed version number
1 parent 4a73fba commit 8a84eb1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WebUI/electron/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,14 +462,14 @@ function wakeupApiService() {
462462
};
463463

464464
if (settings.debug) {
465-
apiService.webProcess = spawn("cmd.exe", ["/c", pytonExe, "web_api.py", "--port", settings.port.toString()], {
465+
apiService.webProcess = spawn("cmd.exe", ["/c", pythonExe, "web_api.py", "--port", settings.port.toString()], {
466466
cwd: wordkDir,
467467
detached: true,
468468
windowsHide: false,
469469
env: Object.assign(process.env, newEnv)
470470
});
471471
} else {
472-
apiService.webProcess = spawn(pytonExe, ["web_api.py", "--port", settings.port.toString()], {
472+
apiService.webProcess = spawn(pythonExe, ["web_api.py", "--port", settings.port.toString()], {
473473
cwd: wordkDir,
474474
windowsHide: true,
475475
env: Object.assign(process.env, newEnv)

WebUI/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<div>
4343
<p>Al Playground from Intel Corporation <a href="https://github.com/intel/ai-playground" target="_blank"
4444
class="text-blue-500">https://github.com/intel/ai-playground</a></p>
45-
<p>AI Playground version: v{{ "1.0b" }}
45+
<p>AI Playground version: v{{ "1.01b" }}
4646
<a href="https://github.com/intel/ai-playground/blob/main/AI%20Playground%20Users%20Guide.pdf" target="_blank"
4747
class="text-blue-500"> User Guide</a>
4848

0 commit comments

Comments
 (0)