Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv committed Nov 14, 2024
1 parent 5006c19 commit ef2a34e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ElasticsearchClient } from '@kbn/core-elasticsearch-server';
import { Logger } from '@kbn/logging';
import moment from 'moment';

export const AI_ASSISTANT_KB_INFERENCE_ID = 'obs_obs_ai_assistant_kb_inference';
export const AI_ASSISTANT_KB_INFERENCE_ID = 'obs_ai_assistant_kb_inference';

export async function createInferenceEndpoint({
esClient,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function ApiTest({ getService }: FtrProviderContext) {
.expect(200);

expect(res.body.service_settings.model_id).to.be('pt_tiny_elser');
expect(res.body.inference_id).to.be('obs_obs_ai_assistant_kb_inference');
expect(res.body.inference_id).to.be('obs_ai_assistant_kb_inference');

await deleteKnowledgeBaseModel(ml);
await deleteInferenceEndpoint({ es });
Expand Down

0 comments on commit ef2a34e

Please sign in to comment.