Skip to content
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 @@ -149,8 +149,8 @@ export class InferenceManager implements ICompletions {
} else {
// Server is running with successful request
// console.log('Inference server is running')
// console.log('completion is runnig', state.data?.completion)
// console.log('general is runnig', state.data?.general)
// console.log('completion is running', state.data?.completion)
// console.log('general is running', state.data?.general)
}
// this._handleResources()
}
Expand All @@ -176,7 +176,7 @@ export class InferenceManager implements ICompletions {
}
if (model.modelReqs.GPURequired) {
if (gpu_available.length < 1) {
if (logger)console.warn('GPU requiredfor desktop inference but not available')
if (logger)console.warn('GPU required for desktop inference but not available')
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ function getLibraryCallContractName (node: FunctionCallAstNode): string | undefi
* library set{...}
* contract foo {
* ...
* function () { set.union() => uinion}
* function () { set.union() => union}
* @func {ASTNode} function call node
* @return {string} name of function called on the library
*/
Expand Down Expand Up @@ -1040,7 +1040,7 @@ function matches (...fnArgs: any[]): string {

/**
* Finds first node of a certain type under a specific node.
* @node {AstNode} node to start form
* @node {AstNode} node to start from
* @type {String} Type the ast node should have
* @return {AstNode} null or node found
* Note: developed keeping identifier node search in mind to get first identifier node from left in subscope
Expand Down