-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Merge develop to main #1935
Conversation
fix: add helpdesk to apps page
chore(README): update screenshot
fix: add missing order by in List Manager's client helper
- Search headings separately - Reduce page length - Change weights - Summarize description in search results
feat(TicketsAgent): export tickets list in excel,csv format
feat: allow selected rows to be exported
- Change search algorithm to BM25. Seems to give better results - Reduce fuzzyness as it seems to mess with accuracy for small words (ssh, site, row, etc)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…ling fix: show proper error message
fix(HelpdeskSearch): Improve search of knowledge base articles
Need to filter in query manually as we do fuzzy search of all words
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
fix(HelpdeskSearch): Add custom stopwords
…esults needs nltk
Increase default score of all docs. More likely to return results
fix(HelpdeskSearch): Optimistically retreive results
Effectively same and compatible with redis 7.4
fix: scroll to view from Hash
@@ -240,3 +334,13 @@ def build_index_if_not_exists(): | |||
search = HelpdeskSearch() | |||
if not search.index_exists(): | |||
build_index() | |||
|
|||
@filelock("helpdesk_corpus_download", timeout=60) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[black-format] reported by reviewdog 🐶
@filelock("helpdesk_corpus_download", timeout=60) | |
@filelock("helpdesk_corpus_download", timeout=60) |
@filelock("helpdesk_corpus_download", timeout=60) | ||
def download_corpus(): | ||
from nltk import download, data | ||
try: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[black-format] reported by reviewdog 🐶
try: | |
try: |
@@ -61,7 +61,7 @@ | |||
</template> | |||
|
|||
<script setup lang="ts"> | |||
import { ref, computed } from "vue"; | |||
import { ref, computed, h } from "vue"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'h' is defined but never used.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1935 +/- ##
==========================================
+ Coverage 31.31% 31.33% +0.02%
==========================================
Files 61 61
Lines 1977 2020 +43
==========================================
+ Hits 619 633 +14
- Misses 1358 1387 +29 ☔ View full report in Codecov by Sentry. |
No description provided.