Skip to content

help

help is a method of AI application instance, usually used to intelligently reply to crawler questions.

type

help API is a function.

ts
function help(
  content: string,
  option?: CrawlOpenAICommonAPIOtherOption
): Promise<string>

Parameter Type:

Example

js
import { createCrawlOpenAI } from 'x-crawl'

const crawlOpenAIApp = createCrawlOpenAI()

crawlOpenAIApp.help('Tell the AI your problem').then((res) => {})

Released under the MIT license