@daocloud-proto/hydra 0.1.3-dev-1 → 0.1.3-dev-3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,6 +22,11 @@ export enum ModelSupportFeature {
22
22
  AUDIO_TO_TEXT = "AUDIO_TO_TEXT",
23
23
  }
24
24
 
25
+ export type ModelPrice = {
26
+ inputPerKTokens?: string
27
+ outputPerKTokens?: string
28
+ }
29
+
25
30
  export type Model = {
26
31
  modelId?: string
27
32
  modelAvatar?: string
@@ -36,10 +41,12 @@ export type Model = {
36
41
  publicEndpointEnabled?: boolean
37
42
  publicEndpointBaseUrl?: string
38
43
  publicAccessModelName?: string
44
+ publicModelPrice?: ModelPrice
39
45
  }
40
46
 
41
47
  export type ListModelRequest = {
42
48
  page?: HydraCommonCommon.Pagination
49
+ showPublicModelPrice?: boolean
43
50
  }
44
51
 
45
52
  export type ListModelResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/hydra",
3
- "version": "v0.1.3-dev-1",
3
+ "version": "v0.1.3-dev-3",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"