Skip to content

Commit 28e7b79

Browse files
committed
fix contributing, turn off threads for now
1 parent e487bee commit 28e7b79

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

CONTRIBUTING.md

+1-15
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,7 @@ npm start
4343
First, install prettier.
4444

4545
```sh
46-
npm install -g prettier
47-
```
48-
49-
Once Prettier is installed, you can run it on a single file or multiple files using the following commands:
50-
51-
1. For a single file:
52-
53-
```sh
54-
prettier --write path/to/your/file.js
55-
```
56-
57-
2. For a multiple file:
58-
59-
```sh
60-
prettier --write "src/**/*.js"
46+
npm run lint:fix
6147
```
6248

6349
If you use Vscode, It is recommended to use [prettier-vscode](https://github.com/prettier/prettier-vscode)

src/helpers/llm.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { captureLlmRecord, mockedLlmCompletion } from './mock-llm';
1616
import { getCodeBlock } from './interactive-mode';
1717

1818
const defaultModel = 'gpt-4o';
19-
export const USE_ASSISTANT = true;
19+
export const USE_ASSISTANT = false;
2020
const assistantIdentifierMetadataKey = '_id';
2121
const assistantIdentifierMetadataValue = '@builder.io/micro-agent';
2222

0 commit comments

Comments
 (0)