Skip to content

Commit f4a4b06

Browse files
committed
docs: update usage documentation with OpenAI compatibility information and add new extension Terminal.
1 parent fab0fa5 commit f4a4b06

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,6 @@ project(":csharp") {
554554
project(":goland") {
555555
intellij {
556556
version.set(ideaVersion)
557-
// type.set("IU")
558557
updateSinceUntilBuild.set(false)
559558
// required if Go language API is needed:
560559
plugins.set(prop("goPlugin").split(',').map(String::trim).filter(String::isNotEmpty))
@@ -577,7 +576,7 @@ project(":exts:ext-database") {
577576
project(":exts:ext-android") {
578577
intellij {
579578
version.set(ideaVersion)
580-
type.set("AI")
579+
type.set("AI") // means Android Studio
581580
plugins.set((ideaPlugins + prop("androidPlugin").ifBlank { "" }).filter(String::isNotEmpty))
582581
}
583582

@@ -589,7 +588,7 @@ project(":exts:ext-android") {
589588
project(":exts:ext-harmonyos") {
590589
intellij {
591590
version.set(ideaVersion)
592-
type.set("AI")
591+
type.set("AI") // means Android Studio
593592
plugins.set((ideaPlugins + prop("androidPlugin").ifBlank { "" }).filter(String::isNotEmpty))
594593
}
595594

docs/usage.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ permalink: /quick-start
2727
4. fill `OpenAI API Key` with your Host OpenAI API Key.
2828
5. Apply and OK.
2929

30+
ps: For OpenAI compatible, you can use `Open AI Model` to your custom OpenAI compatible model.
31+
3032
### OpenAI Azure Config
3133

3234
1. open AutoDev Config in `Settings` -> `Tools` -> `AutoDev`.

exts/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ In this folder, you can find some advanced extensions for AutoDev.
55
- Database. Build an SQL, Oracle or MySQL database with GenAI ability.
66
- Android. This extension allows you to build Android with GenAI ability.
77
- HarmonyOS. This extension allows you to build HarmonyOS with GenAI ability.
8+
- Terminal. Integration with terminal with GenAI ability.
9+
10+
Others:
11+
812
- DevIns. This extension allows you to build DevIns language with GenAI ability.
913

1014
## How to add new extensions

0 commit comments

Comments
 (0)