Skip to content

Commit

Permalink
resolve lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
craigrbarnes committed Mar 18, 2024
1 parent 212d82f commit d95e324
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/core/src/features/aiSearch/aiSearchSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@ import { GEN3_AI_SEARCH_API } from '../../constants';
import { gen3Api } from '../gen3';

interface AiSearchParams {

readonly query: string;
}

interface AiSearchRequestParams extends AiSearchParams {
readonly topic?: string;
readonly conversationId?: string;
readonly query: string;
}

export interface AiSearchResponse extends AiSearchParams {
readonly query: string;
readonly topic: string;
readonly conversationId: string;
readonly response: string;
Expand Down

0 comments on commit d95e324

Please sign in to comment.