Merge pull request #1436 from mendableai/feat/increase-search-limit

feat(api/search): add search endpoint and update request limits
This commit is contained in:
Ademílson Tonato 2025-04-09 19:04:31 +01:00 committed by GitHub
commit 45efe3fd46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 13 additions and 2 deletions

View File

@ -120,3 +120,14 @@ content-type: application/json
GET {{baseUrl}}/v1/llmstxt/{{generateLlmsTxtId}} HTTP/1.1 GET {{baseUrl}}/v1/llmstxt/{{generateLlmsTxtId}} HTTP/1.1
Authorization: Bearer {{$dotenv TEST_API_KEY}} Authorization: Bearer {{$dotenv TEST_API_KEY}}
### Search
# @name search
POST {{baseUrl}}/v1/search HTTP/1.1
Authorization: Bearer {{$dotenv TEST_API_KEY}}
content-type: application/json
{
"query": "firecrawl",
"limit": 50
}

View File

@ -969,7 +969,7 @@ export const searchRequestSchema = z
.positive() .positive()
.finite() .finite()
.safe() .safe()
.max(20) .max(50)
.optional() .optional()
.default(5), .default(5),
tbs: z.string().optional(), tbs: z.string().optional(),

View File

@ -70,7 +70,7 @@ async function _req(
export async function googleSearch( export async function googleSearch(
term: string, term: string,
advanced = false, advanced = false,
num_results = 7, num_results = 5,
tbs = undefined as string | undefined, tbs = undefined as string | undefined,
filter = undefined as string | undefined, filter = undefined as string | undefined,
lang = "en", lang = "en",