chore: update OpenHuman version to 0.49.12 and refine release workflow

- Bumped OpenHuman version in Cargo.lock from 0.49.11 to 0.49.12.
- Cleaned up the release workflow by standardizing argument formatting for better consistency across platforms.
- Made minor formatting adjustments in Conversations component for improved readability.
This commit is contained in:
Steven Enamakel
2026-03-26 19:40:36 -07:00
parent 87ad12d397
commit 129e227074
4 changed files with 20 additions and 15 deletions
+4 -4
View File
@@ -219,8 +219,8 @@ jobs:
# target: x86_64-apple-darwin
# artifact_suffix: x86_64-apple-darwin
- platform: ubuntu-22.04
args: ""
target: ""
args: ''
target: ''
artifact_suffix: ubuntu
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -287,7 +287,7 @@ jobs:
env:
BASE_URL: ${{ vars.BASE_URL }}
UPDATER_PUBLIC_KEY: ${{ secrets.UPDATER_PUBLIC_KEY }}
WITH_UPDATER: "true"
WITH_UPDATER: 'true'
with:
script: |
const workspacePath = process.env.GITHUB_WORKSPACE.replace(/\\/g, '/');
@@ -318,7 +318,7 @@ jobs:
BASE_URL: ${{ vars.BASE_URL }}
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY || secrets.UPDATER_PRIVATE_KEY }}
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD || secrets.UPDATER_PRIVATE_KEY_PASSWORD }}
WITH_UPDATER: "true"
WITH_UPDATER: 'true'
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.settings.platform == 'macos-latest' && '10.15' || '' }}
with:
# Tools discovery now uses a JS mock registry (no Rust discovery
+1 -1
View File
@@ -4,7 +4,7 @@ version = 4
[[package]]
name = "OpenHuman"
version = "0.49.11"
version = "0.49.12"
dependencies = [
"aes-gcm",
"android_logger",
+14 -7
View File
@@ -244,10 +244,7 @@ const Conversations = () => {
entry.name === event.tool_name &&
entry.round === event.round
) {
nextEntries[i] = {
...entry,
status: event.success ? 'success' : 'error',
};
nextEntries[i] = { ...entry, status: event.success ? 'success' : 'error' };
changed = true;
break;
}
@@ -559,7 +556,11 @@ const Conversations = () => {
/>
</svg>
) : (
<svg className="w-3.5 h-3.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg
className="w-3.5 h-3.5"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24">
<path
strokeLinecap="round"
strokeLinejoin="round"
@@ -712,7 +713,11 @@ const Conversations = () => {
? `$${teamUsage.remainingUsd.toFixed(2)} of $${teamUsage.cycleBudgetUsd.toFixed(2)} remaining`
: 'Loading budget…'
}>
<svg width={size} height={size} viewBox={`0 0 ${size} ${size}`} className="-rotate-90">
<svg
width={size}
height={size}
viewBox={`0 0 ${size} ${size}`}
className="-rotate-90">
<circle
cx={size / 2}
cy={size / 2}
@@ -751,7 +756,9 @@ const Conversations = () => {
)}
</svg>
{teamUsage && (
<span className="text-[10px] text-stone-500">${teamUsage.remainingUsd.toFixed(2)}</span>
<span className="text-[10px] text-stone-500">
${teamUsage.remainingUsd.toFixed(2)}
</span>
)}
</div>
);
+1 -3
View File
@@ -33,9 +33,7 @@ export interface ChatCompletionRequest {
messages: ChatMessage[];
tools?: Tool[];
tool_choice?: 'auto' | 'none' | { type: 'function'; function: { name: string } };
openhuman?: {
trace_tools?: boolean;
};
openhuman?: { trace_tools?: boolean };
stream?: boolean;
temperature?: number;
max_tokens?: number;