-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Quick fix: remove tabs and unused AI exports #15791
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -94,7 +94,6 @@ | |
| exports org.jabref.model.openoffice.uno; | ||
| exports org.jabref.model.openoffice.util; | ||
| exports org.jabref.logic.importer.plaincitation; | ||
| exports org.jabref.logic.ai.templates; | ||
| exports org.jabref.logic.bst; | ||
| exports org.jabref.model.study; | ||
| exports org.jabref.logic.shared.security; | ||
|
|
@@ -121,23 +120,18 @@ | |
|
|
||
| // region: AI | ||
| exports org.jabref.logic.ai; | ||
| exports org.jabref.logic.ai.models; | ||
| exports org.jabref.logic.ai.chatting; | ||
| exports org.jabref.logic.ai.util; | ||
| exports org.jabref.logic.ai.summarization; | ||
| exports org.jabref.logic.ai.summarization.repositories; | ||
| exports org.jabref.logic.ai.ingestion; | ||
| exports org.jabref.logic.ai.ingestion.logic.documentsplitting; | ||
| exports org.jabref.logic.ai.ingestion.logic.ingestion; | ||
| exports org.jabref.logic.ai.ingestion.logic.parsing; | ||
| exports org.jabref.logic.ai.summarization.tasks; | ||
| exports org.jabref.logic.ai.summarization.logic; | ||
| exports org.jabref.logic.ai.summarization.logic.summarizationalgorithms; | ||
| exports org.jabref.logic.ai.ingestion.tasks; | ||
| exports org.jabref.logic.ai.ingestion.repositories; | ||
| exports org.jabref.logic.ai.ingestion.logic; | ||
| exports org.jabref.logic.ai.chatting.tasks; | ||
| exports org.jabref.logic.ai.chatting.repositories; | ||
| exports org.jabref.logic.ai.preferences; | ||
| exports org.jabref.model.ai.chatting; | ||
| exports org.jabref.model.ai.pipeline; | ||
|
|
@@ -152,16 +146,12 @@ | |
| exports org.jabref.logic.ai.ingestion.tasks.generateembeddingsforseveral; | ||
| exports org.jabref.logic.ai.ingestion.tasks.generateembeddings; | ||
| exports org.jabref.logic.ai.rag.util; | ||
| exports org.jabref.logic.ai.tokenization.logic; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2. Hidden tokenizer return type ChatModel#getTokenizer() is public and part of an exported package, but returns TokenEstimator from org.jabref.logic.ai.tokenization.logic, which is no longer exported by jablib's module-info. Downstream modules can no longer call or implement this API under JPMS, which is a breaking change for any consumer that previously used it. Agent Prompt
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is intended |
||
| exports org.jabref.logic.ai.ingestion.util; | ||
| exports org.jabref.logic.ai.followup.tasks; | ||
| exports org.jabref.model.ai; | ||
| exports org.jabref.logic.ai.chatting.exporters; | ||
| exports org.jabref.logic.ai.summarization.exporters; | ||
| exports org.jabref.logic.ai.chatting.migrations; | ||
| exports org.jabref.logic.ai.summarization.migration; | ||
| exports org.jabref.logic.ai.summarization.util; | ||
| exports org.jabref.logic.ai.tokenization.util; | ||
| // endregion | ||
|
|
||
| requires java.base; | ||
|
|
||
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.
1. Hidden chat repository api
🐞 Bug≡ CorrectnessAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation toolsThere 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.
This is intended