浏览代码

readme code formatting

Mish Ushakov 1 年之前
父节点
当前提交
eb9bd34622
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      README.md

+ 3 - 0
README.md

@@ -46,6 +46,7 @@ LLM Scraper is a TypeScript library that allows you to extract structured data f
 
    ```js
    import { openai } from '@ai-sdk/openai'
+
    const llm = openai.chat('gpt-4o')
    ```
 
@@ -81,6 +82,7 @@ LLM Scraper is a TypeScript library that allows you to extract structured data f
 
    ```js
    import { LlamaModel } from 'node-llama-cpp'
+
    const llm = new LlamaModel({ modelPath: 'model.gguf' })
    ```
 
@@ -88,6 +90,7 @@ LLM Scraper is a TypeScript library that allows you to extract structured data f
 
    ```js
    import LLMScraper from 'llm-scraper'
+
    const scraper = new LLMScraper(llm)
    ```