Skip to content

Commit c8d3c05

Browse files
committed
Renaming.
1 parent 6106c82 commit c8d3c05

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/sdk/ai/src/LDAIClientImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ interface VariationContent {
2323
_ldMeta?: LDMeta;
2424
}
2525

26-
export class AIClientImpl implements LDAIClient {
26+
export class LDAIClientImpl implements LDAIClient {
2727
private _ldClient: LDClient;
2828

2929
constructor(ldClient: LDClient) {

packages/sdk/ai/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import { LDClient } from '@launchdarkly/node-server-sdk';
22

33
import { LDAIClient } from './api/AIClient';
4-
import { AIClientImpl } from './LDAIClientImpl';
4+
import { LDAIClientImpl } from './LDAIClientImpl';
55

66
/**
77
* Initialize a new AI client. This client will be used to perform any AI operations.
88
* @param ldClient The base LaunchDarkly client.
99
* @returns A new AI client.
1010
*/
1111
export function initAi(ldClient: LDClient): LDAIClient {
12-
return new AIClientImpl(ldClient);
12+
return new LDAIClientImpl(ldClient);
1313
}
1414

1515
export * from './api';

0 commit comments

Comments
 (0)