File size: 1,129 Bytes
f27679f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { downloadFile } from "@/huggingface/hub/src"
import { getCredentials } from "./getCredentials"

export async function downloadFileAsText({
  repo,
  path,
  apiKey,
  renewCache = false,
  neverThrow = false
}: {
  repo: string

  path: string

  apiKey?: string

  /**
   * Force renewing the cache
   * 
   * False by default
   */
  renewCache?: boolean

  /**
   * If set to true, this function will never throw an exception
   * this is useful in workflow where we don't care about what happened
   * 
   * False by default
   */
  neverThrow?: boolean
}): Promise<string> {
  try {
    const { credentials } = await getCredentials(apiKey)

    const response = await downloadFile({
      repo,
      path,
      credentials,
      requestInit: renewCache
        ? { cache: "no-cache" }
        : undefined
    })
    
    const text = await response?.text()

    if (typeof text !== "string") {
      throw new Error(`file has no text content`)
    }

    return text
  } catch (err) {
    if (neverThrow) {
      console.error(`downloadFileAsText():`, err)
      return ""
    } else {
      throw err
    }
  }
}