Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ Deep search variants that also support `additionalQueries`:
- `deep-lite`
- `deep`
- `deep-reasoning`
- `deep-max`

## Contents

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ type BaseRegularSearchOptions = BaseSearchOptions & {
outputSchema?: DeepOutputSchema;
};

export type DeepSearchType = "deep-lite" | "deep" | "deep-reasoning";
export type DeepSearchType = "deep-lite" | "deep" | "deep-reasoning" | "deep-max";

/**
* Deep search output schema mode for plain text responses.
Expand Down
Loading