소스 검색

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)
    ```