mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-12 07:39:00 +08:00
Nick: added analysis prompt to the sdks
This commit is contained in:
parent
010c8750d4
commit
4fc5e6f6ca
@ -371,6 +371,10 @@ export interface DeepResearchParams {
|
|||||||
* @default 20
|
* @default 20
|
||||||
*/
|
*/
|
||||||
maxUrls?: number;
|
maxUrls?: number;
|
||||||
|
/**
|
||||||
|
* The prompt to use for the final analysis
|
||||||
|
*/
|
||||||
|
analysisPrompt?: string;
|
||||||
/**
|
/**
|
||||||
* Experimental flag for streaming steps
|
* Experimental flag for streaming steps
|
||||||
*/
|
*/
|
||||||
|
@ -48,6 +48,7 @@ class DeepResearchParams(pydantic.BaseModel):
|
|||||||
maxDepth: Optional[int] = 7
|
maxDepth: Optional[int] = 7
|
||||||
timeLimit: Optional[int] = 270
|
timeLimit: Optional[int] = 270
|
||||||
maxUrls: Optional[int] = 20
|
maxUrls: Optional[int] = 20
|
||||||
|
analysisPrompt: Optional[str] = None
|
||||||
__experimental_streamSteps: Optional[bool] = None
|
__experimental_streamSteps: Optional[bool] = None
|
||||||
|
|
||||||
class DeepResearchResponse(pydantic.BaseModel):
|
class DeepResearchResponse(pydantic.BaseModel):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user