Whether the target is a single file or a directory of instruction files Entry type
| 2179 | |
| 2180 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 2181 | class InstructionDiscoveryPathKind(Enum): |
| 2182 | """Whether the target is a single file or a directory of instruction files |
| 2183 | |
| 2184 | Entry type |
| 2185 | """ |
| 2186 | DIRECTORY = "directory" |
| 2187 | FILE = "file" |
| 2188 | |
| 2189 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 2190 | class InstructionLocation(Enum): |