Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
deekshas8 committed Jan 2, 2025
1 parent fd5366a commit 8badfab
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/orchestration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ const orchestrationConfig: {
grounding: buildDocumentGroundingConfig(
input_params: ['groundingInput'],
output_param: 'groundingOutput',
filters: [{id: 'filter-id', data_repositories: ['repository-id'],}]
filters: [{id: 'filter-id', data_repositories: ['repository-id'] }]
)
}
```
Expand Down
2 changes: 1 addition & 1 deletion packages/orchestration/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export { OrchestrationClient } from './orchestration-client.js';
export {
buildAzureContentFilter,
buildDocumentGroundingConfig
} from './orchestration-util.js';
} from './orchestration-utils.js';

export { OrchestrationResponse } from './orchestration-response.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/orchestration/src/internal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './orchestration-client.js';
export * from './orchestration-util.js';
export * from './orchestration-utils.js';
export * from './orchestration-types.js';
export * from './orchestration-response.js';
2 changes: 1 addition & 1 deletion packages/orchestration/src/orchestration-client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
constructCompletionPostRequest,
OrchestrationClient
} from './orchestration-client.js';
import { buildAzureContentFilter } from './orchestration-util.js';
import { buildAzureContentFilter } from './orchestration-utils.js';
import { OrchestrationResponse } from './orchestration-response.js';
import type { CompletionPostResponse } from './client/api/schema/index.js';
import type {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { constructCompletionPostRequest } from './orchestration-client.js';
import { buildAzureContentFilter } from './orchestration-util.js';
import { buildAzureContentFilter } from './orchestration-utils.js';
import type { CompletionPostRequest } from './client/api/schema/index.js';
import type { OrchestrationModuleConfig } from './orchestration-types.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/orchestration/src/orchestration-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export type DocumentGroundingServiceFilter = Pick<
*/
export interface DocumentGroundingServiceConfig {
/**
* Define the filters to apply during the grounding process.
* Defines the filters to apply during the grounding process.
*/
filters?: DocumentGroundingServiceFilter[];
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { constructCompletionPostRequest } from './orchestration-client.js';
import {
buildAzureContentFilter,
buildDocumentGroundingConfig
} from './orchestration-util.js';
} from './orchestration-utils.js';
import type {
CompletionPostRequest,
FilteringModuleConfig
Expand Down

0 comments on commit 8badfab

Please sign in to comment.