Skip to content

Commit 606acc3

Browse files
committed
Add "exact_only" to the bot and Python
1 parent 1ec7b78 commit 606acc3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

bingus-bot/src/util.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ export interface FaqConfig {
173173
answer: string;
174174
keywords: string[];
175175
questions: string[];
176+
exact_only: boolean;
176177
}[];
177178
}
178179

bingus-python-encoder/data_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ class FaqEntry(BaseModel):
7171
answer: str
7272
keywords: list[str]
7373
questions: list[str]
74+
exact_only: bool
7475

7576

7677
class FaqConfig(BaseModel):

0 commit comments

Comments
 (0)