Skip to content

Commit

Permalink
fix: default isDisabled to false (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonom authored Jul 27, 2024
1 parent b11fb2c commit c9ca4cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/runtimes/local/LocalThreadRuntime.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class LocalThreadRuntime implements ThreadRuntime {

public readonly capabilities = CAPABILITIES;

public readonly isDisabled = true;
public readonly isDisabled = false;

public get messages() {
return this.repository.getMessages();
Expand Down

0 comments on commit c9ca4cf

Please sign in to comment.