-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
open ai and anthropic model name fix
- Loading branch information
1 parent
24855ac
commit bf99244
Showing
10 changed files
with
96 additions
and
50 deletions.
There are no files selected for viewing
14 changes: 10 additions & 4 deletions
14
...a/com/github/damiano1996/jetbrains/incoder/language/model/client/LanguageModelClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
package com.github.damiano1996.jetbrains.incoder.language.model.client; | ||
|
||
import com.github.damiano1996.jetbrains.incoder.language.model.LanguageModelException; | ||
import com.github.damiano1996.jetbrains.incoder.language.model.client.chat.ChatCodingAssistant; | ||
import com.github.damiano1996.jetbrains.incoder.language.model.client.file.FileManagerAssistant; | ||
import com.github.damiano1996.jetbrains.incoder.language.model.client.inline.InlineCodingAssistant; | ||
import com.github.damiano1996.jetbrains.incoder.language.model.client.prompt.PromptClassifier; | ||
|
||
public interface LanguageModelClient | ||
extends ChatCodingAssistant, | ||
InlineCodingAssistant, | ||
FileManagerAssistant, | ||
PromptClassifier {} | ||
extends ChatCodingAssistant, InlineCodingAssistant, FileManagerAssistant, PromptClassifier { | ||
|
||
/** | ||
* Checks whether the connection is healthy. | ||
* | ||
* @throws LanguageModelException if the connection or settings are unhealthy. | ||
*/ | ||
void checkServerConnection() throws LanguageModelException; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters