Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ksyeo1010 committed Sep 20, 2024
1 parent 30ce9a1 commit b32681a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion binding/web/src/dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class Dialog {
* to `undefined` will embed the entire dialog in the prompt.
* @param system Instruction to embed in the prompt for configuring the model's responses.
*/
constructor(history?: number, system?: string) {
public constructor(history?: number, system?: string) {
this._history = history;
this._system = system;

Expand Down
2 changes: 1 addition & 1 deletion binding/web/test/picollm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ describe('PicoLLM generate tests (worker)', () => {
generateTests();
});

describe('PicoLLM Dialog tests', () => {
describe.only('PicoLLM Dialog tests', () => {
it('should be able to get prompt', async () => {
const data = testData.dialog;
const conversation = data.conversation as [string, string][];
Expand Down

0 comments on commit b32681a

Please sign in to comment.