Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: correct typos docs #5540

Merged
merged 2 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/remixdesktop/src/lib/InferenceServerManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class InferenceManager implements ICompletions {

static getInstance(modelDir:string){
if (!InferenceManager.instance) {
// check if ther is a process already running
// check if there is a process already running
if (!modelDir) {
console.error('model directory is required to create InferenceManager instance')
return null
Expand Down Expand Up @@ -156,7 +156,7 @@ export class InferenceManager implements ICompletions {
}

async _handleResources(logger:boolean=false) {
// check resrource usage
// check resource usage
const options = { headers: { 'Content-Type': 'application/json', } }
const res = await axios.get(this.inferenceURL+"/sys", options)

Expand Down Expand Up @@ -526,4 +526,4 @@ export class InferenceManager implements ICompletions {
}
}

}
}
2 changes: 1 addition & 1 deletion apps/remixdesktop/src/menus/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default (
type: 'separator'
},
{
// It's the same thing as clicking the green traffc-light on macOS
// It's the same thing as clicking the green traffic-light on macOS
role: 'zoom',
accelerator: commandKeys['window:zoom']
},
Expand Down