Skip to content

Commit 584b1cc

Browse files
authored
docs: fix ai-native-module.md (#145)
1 parent 3353e7f commit 584b1cc

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

docs/integrate/module-usage/ai-native-module.en.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ startServer({
4848

4949
The purpose of this step is to register various AI capabilities.
5050

51-
1. Create a new contribution file and implement the AiNativeCoreContribution interface.
51+
1. Create a new contribution file and implement the AINativeCoreContribution interface.
5252

5353
```typescript
54-
import { AiNativeCoreContribution } from '@opensumi/ide-ai-native/lib/browser/types';
54+
import { AINativeCoreContribution } from '@opensumi/ide-ai-native/lib/browser/types';
5555

56-
@Domain(AiNativeCoreContribution)
57-
export class AiNativeContribution implements AiNativeCoreContribution {
56+
@Domain(AINativeCoreContribution)
57+
export class AiNativeContribution implements AINativeCoreContribution {
5858
// Register various AI capabilities here
5959
}
6060
```
@@ -110,8 +110,8 @@ So, it is necessary to provide various provider capabilities in AiNativeContribu
110110
Taking inline chat as an example, implement the registerInlineChatFeature method in AiNativeContribution.
111111

112112
```typescript
113-
@Domain(AiNativeCoreContribution)
114-
export class AiNativeContribution implements AiNativeCoreContribution {
113+
@Domain(AINativeCoreContribution)
114+
export class AiNativeContribution implements AINativeCoreContribution {
115115
// Obtain the registered backend service through AIBackSerivcePath
116116
// At this point, you can directly RPC call the functions provided by the backend service
117117
@Autowired(AIBackSerivcePath)

docs/integrate/module-usage/ai-native-module.zh.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ startServer({
4747

4848
这一步的目的是为了注册各种 AI 能力
4949

50-
**1. 新建一个 `contribution` 文件,并实现 `AiNativeCoreContribution` 接口**
50+
**1. 新建一个 `contribution` 文件,并实现 `AINativeCoreContribution` 接口**
5151

5252
```typescript
53-
import { AiNativeCoreContribution } from '@opensumi/ide-ai-native/lib/browser/types';
53+
import { AINativeCoreContribution } from '@opensumi/ide-ai-native/lib/browser/types';
5454

55-
@Domain(AiNativeCoreContribution)
56-
export class AiNativeContribution implements AiNativeCoreContribution {
55+
@Domain(AINativeCoreContribution)
56+
export class AiNativeContribution implements AINativeCoreContribution {
5757
// 在这里注册各种 AI 能力
5858
}
5959
```
@@ -140,8 +140,8 @@ const serverApp = new ServerApp(opts);
140140
我们以 inline chat 为例,在 AiNativeContribution 中实现 `registerInlineChatFeature` 方法
141141

142142
```typescript
143-
@Domain(AiNativeCoreContribution)
144-
export class AiNativeContribution implements AiNativeCoreContribution {
143+
@Domain(AINativeCoreContribution)
144+
export class AiNativeContribution implements AINativeCoreContribution {
145145
// 通过 AIBackSerivcePath 拿到注册好的后端服务
146146
// 此时就能直接 RPC 调用后端服务提供的函数
147147
@Autowired(AIBackSerivcePath)

0 commit comments

Comments
 (0)