Skip to content

Commit

Permalink
Rename AIClient file to LDAIClient.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion committed Nov 4, 2024
1 parent f361b9b commit 7043d26
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/sdk/server-ai/src/LDAIClientImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Mustache from 'mustache';

import { LDClient, LDContext } from '@launchdarkly/node-server-sdk';

import { LDAIClient } from './api/AIClient';
import { LDAIClient } from './api/LDAIClient';
import { LDAIConfig, LDGenerationConfig, LDModelConfig, LDPrompt } from './api/config';
import { LDAIConfigTrackerImpl } from './LDAIConfigTrackerImpl';

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/sdk/server-ai/src/api/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './config';
export * from './metrics';
export * from './AIClient';
export * from './LDAIClient';
2 changes: 1 addition & 1 deletion packages/sdk/server-ai/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { LDClient } from '@launchdarkly/node-server-sdk';

import { LDAIClient } from './api/AIClient';
import { LDAIClient } from './api/LDAIClient';
import { LDAIClientImpl } from './LDAIClientImpl';

/**
Expand Down

0 comments on commit 7043d26

Please sign in to comment.