Skip to content

Commit 7f75384

Browse files
Change Open AI to Open AI (or API Compatible) (#13608)
* modifying open AI api comptaible * change processing sumary message to display actual message * add change log entry * move feature description to changed section * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: Christoph <[email protected]>
1 parent 0f0f795 commit 7f75384

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
2525

2626
### Changed
2727

28+
- We changed the name from Open AI Provider to Open AI (or API compatible). [#13585](https://github.com/JabRef/jabref/issues/13585)
2829
- We improved the citations relations caching by implementing an offline storage. [#11189](https://github.com/JabRef/jabref/issues/11189)
2930
- We added a tooltip to keywords that resemble Math Subject Classification (MSC) codes. [#12944](https://github.com/JabRef/jabref/issues/12944)
3031
- We added a formatter to convert keywords that resemble MSC codes to their descriptions. [#12944](https://github.com/JabRef/jabref/issues/12944)

jabgui/src/main/java/org/jabref/gui/ai/components/summary/SummaryComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private Node showErrorWhileSummarizing(ProcessingInfo<BibEntry, Summary> process
136136
private Node showErrorNotSummarized() {
137137
return ErrorStateComponent.withSpinner(
138138
Localization.lang("Processing..."),
139-
Localization.lang("The attached file(s) are currently being processed by %0. Once completed, you will be able to see the summary.", aiPreferences.getAiProvider().getLabel())
139+
Localization.lang("The attached file(s) are currently being processed by %0. Once completed, you will be able to see the summary.", aiPreferences.getSelectedChatModel())
140140
);
141141
}
142142

jablib/src/main/java/org/jabref/model/ai/AiProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.io.Serializable;
44

55
public enum AiProvider implements Serializable {
6-
OPEN_AI("OpenAI", "https://api.openai.com/v1", "https://openai.com/policies/privacy-policy/"),
6+
OPEN_AI("OpenAI (or API compatible)", "https://api.openai.com/v1", "https://openai.com/policies/privacy-policy/"),
77
MISTRAL_AI("Mistral AI", "https://api.mistral.ai/v1", "https://mistral.ai/terms/#privacy-policy"),
88
GEMINI("Gemini", "https://generativelanguage.googleapis.com/v1beta/", "https://ai.google.dev/gemini-api/terms"),
99
HUGGING_FACE("Hugging Face", "https://huggingface.co/api", "https://huggingface.co/privacy"),

0 commit comments

Comments
 (0)