File size: 1,052 Bytes
e864e26
 
09a7c47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e864e26
09a7c47
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
60
61
62
63
64
65
66
67
68
69
70
71
import { ChannelInfo } from "@/types/general"
import { defaultMediaOrientation } from "@aitube/clap"

export const defaultChannel: ChannelInfo = {
 /**
   * We actually use the dataset ID for the channel ID.
   * 
   */
 id: "d25efcc1-3cc2-4b41-9f41-e3a93300ae5f",

 /**
  * The name used in the URL for the channel
  * 
  * eg: my-time-travel-journeys
  */
 slug: "latent",

 /**
  * username id of the Hugging Face dataset
  * 
  * ex: f9a38286ec3436a45edd2cca
  */
 // DISABLED FOR NOW
 // datasetUserId: string

 /**
  * username slug of the Hugging Face dataset
  * 
  * eg: jbilcke-hf
  */
 datasetUser: "",

 /**
  * dataset slug of the Hugging Face dataset
  * 
  * eg: ai-tube-my-time-travel-journeys
  */
 datasetName: "",

 label: "Latent",

 description: "Latent",

 thumbnail: "",

 model: "SDXL",

 lora: "",
 
 style: "",

 voice: "",

 music: "",

 /**
  * The system prompt
  */
 prompt: "",

 likes: 0,

 tags: [],

 updatedAt: new Date().toISOString(),

 /**
  * Default video orientation
  */
 orientation: defaultMediaOrientation
}