Skip to content

Commit d927bb8

Browse files
committed
chore(clients): TODOs
1 parent 32453bf commit d927bb8

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/main/kotlin/com/github/blarc/ai/commits/intellij/plugin/settings/AppSettingsConfigurable.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ class AppSettingsConfigurable : BoundConfigurable(message("settings.general.grou
2626

2727
row {
2828
label(message("settings.llmClient")).widthGroup("labelPrompt")
29-
// TODO @Blarc: add icon next to LLMClient name
3029
llmClientConfigurationComboBox = comboBox(AppSettings2.instance.llmClientConfigurations, AICommitsListCellRenderer())
3130
.bindItem(getter = AppSettings2.instance::getActiveLLMClient) {
3231
it?.let {

src/main/kotlin/com/github/blarc/ai/commits/intellij/plugin/settings/clients/openAi/OpenAiClientService.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class OpenAiClientService(cs: CoroutineScope) : LLMClientService<OpenAiClientCon
2020
}
2121

2222
override fun buildChatModel(client: OpenAiClientConfiguration): ChatLanguageModel {
23+
// TODO @Blarc: Add OPENAI_ORG
2324
val builder = OpenAiChatModel.builder()
2425
.apiKey(client.token)
2526
.modelName(client.modelId)

0 commit comments

Comments
 (0)