Module: repo_id
RitualRepoId
A module containing the RitualRepoId class, which represents a repository of files on Ritual. A repository in Ritual is identified by where it is stored (storage), the owner of the repository (owner), and the name of the repository (name).
Each repository has a unique id which is of this format: {storage}/{owner}/{name}
Currently there are two types of storage supported: Arweave and Huggingface.
RitualRepoId
Bases: BaseModel
A class representing a repository of files on Ritual. A repository in Ritual is identified by where it is stored (storage), the owner of the repository (owner), and the name of the repository (name).
Each repository has a unique id which is of the format:
{storage}/{owner}/{name}[/{version}]
Attributes:
Name | Type | Description |
---|---|---|
storage |
StorageId
|
The storage where the repository is stored. |
owner |
str
|
The owner of the repository. |
name |
str
|
The name of the repository. |
version |
str
|
The version of the repository. |
Methods:
Name | Description |
---|---|
to_unique_id |
Returns the unique id of the repository. Has the format {storage}/{owner}/{name}/{version} or {storage}/{owner}/{name} |
from_unique_id |
Returns a RitualRepoId object from a unique id. |
from_arweave_repo_id |
Returns a RitualRepoId object from an arweave repository id. |
from_hf_repo_id |
Returns a RitualRepoId object from a huggingface repository id. |
Properties
Source code in src/infernet_ml/resource/repo_id.py
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
|
ar_id: str
property
Returns the unique id of the repository, as used by ritual-arweave's RepoManager. Has the format {owner}/{name}, where owner is the owner of the repository, which is the same as the owner of the arweave wallet that stores the repository, and name is the name of the repository.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The unique arweave id of the repository. |
hf_id: str
property
The huggingface id of the repository.
from_arweave_repo_id(arweave_repo_id)
classmethod
Returns a RitualRepoId object from an arweave repository id.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
arweave_repo_id |
str
|
The arweave repository id. Has the format {owner}/{name} or {owner}/{name}/{version} |
required |
Returns:
Name | Type | Description |
---|---|---|
RitualRepoId |
RitualRepoId
|
The RitualRepoId object. |
Source code in src/infernet_ml/resource/repo_id.py
from_hf_repo_id(hf_repo_id)
classmethod
Returns a RitualRepoId object from a huggingface repository id.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hf_repo_id |
str
|
The huggingface repository id. Has the format {owner}/{name} or {owner}/{name}/{version} where version is the revision of the repository. |
required |
Returns:
Name | Type | Description |
---|---|---|
RitualRepoId |
RitualRepoId
|
The RitualRepoId object. |
Source code in src/infernet_ml/resource/repo_id.py
from_unique_id(unique_id)
classmethod
Returns a RitualRepoId object from a unique id.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
unique_id |
str
|
The unique id of the repository. Has the format {storage}/{owner}/{name}/{version} or {storage}/{owner}/{name} |
required |
Returns:
Name | Type | Description |
---|---|---|
RitualRepoId |
RitualRepoId
|
The RitualRepoId object. |
Source code in src/infernet_ml/resource/repo_id.py
to_unique_id()
Returns the unique id of the repository.
Has the format {storage}/{owner}/{name}[/{version}]
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The unique id of the repository. |