feat: profile解決とmodel catalogを更新
This commit is contained in:
+2
-5
@@ -1259,11 +1259,8 @@
|
||||
<dd><code>{worker.host_id}</code></dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt>Role / profile</dt>
|
||||
<dd>
|
||||
{worker.role ?? "unknown"} / {worker.profile ??
|
||||
"unknown"}
|
||||
</dd>
|
||||
<dt>Profile</dt>
|
||||
<dd>{worker.profile ?? "unknown"}</dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt>Workspace</dt>
|
||||
|
||||
@@ -139,7 +139,7 @@
|
||||
}
|
||||
|
||||
function workerProfile(worker: Worker): string {
|
||||
return worker.profile ?? worker.role ?? 'unknown';
|
||||
return worker.profile ?? 'unknown';
|
||||
}
|
||||
|
||||
function workerDirectory(worker: Worker): string {
|
||||
|
||||
@@ -31,9 +31,9 @@
|
||||
let optionsError = $state<string | null>(null);
|
||||
let submitting = $state(false);
|
||||
let submitError = $state<DisplayError | null>(null);
|
||||
let displayName = $state('Coding Worker');
|
||||
let displayName = $state('Worker');
|
||||
let runtimeId = $state('');
|
||||
let profile = $state('builtin:coder');
|
||||
let profile = $state('');
|
||||
let initialText = $state('');
|
||||
let workingDirectoryId = $state('');
|
||||
let workingDirectoryRepositoryId = $state('');
|
||||
|
||||
Reference in New Issue
Block a user