generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(counit): refactor CoUnit components and settings to support …
…custom RAG #51 Refactored CoUnit components and settings to support a custom RAG system. The modifications include: - Changing imports and class names to reflect the new 'Custom RAG' branding.
- Loading branch information
Showing
9 changed files
with
27 additions
and
18 deletions.
There are no files selected for viewing
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
2 changes: 1 addition & 1 deletion
2
...ings/configurable/CoUnitSettingService.kt → ...unit/configurable/CoUnitSettingService.kt
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
2 changes: 1 addition & 1 deletion
2
...gs/configurable/CoUnitToolConfigurable.kt → ...it/configurable/CoUnitToolConfigurable.kt
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
2 changes: 1 addition & 1 deletion
2
...gurable/CoUnitToolConfigurableProvider.kt → ...gurable/CoUnitToolConfigurableProvider.kt
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package cc.unitmesh.devti.counit.model | ||
|
||
/** | ||
* `Tooling` class represents a tooling configuration. | ||
* | ||
* @property name The name of the tooling. | ||
* @property description A short description of what the tooling is used for. | ||
* @property schema A JSON schema that defines the structure of the tooling configuration. | ||
* @property examples A list of example configurations that illustrate how to use the tooling. | ||
*/ | ||
data class Tooling( | ||
val name: String, | ||
val description: String, | ||
val schema: String, | ||
val examples: List<String> | ||
) |
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