File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " prime-cli"
3
- version = " 0.2.3 "
3
+ version = " 0.2.4 "
4
4
description = " Prime Intellect CLI"
5
5
readme = " README.md"
6
6
requires-python = " >=3.8"
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ class Pod(BaseModel):
66
66
prime_port_mapping : Optional [List [PortMapping ]] = Field (
67
67
None , alias = "primePortMapping"
68
68
)
69
- ssh_connection : Optional [str ] = Field (None , alias = "sshConnection" )
70
- ip : Optional [str ]
69
+ ssh_connection : Optional [Union [ str , List [ str ]] ] = Field (None , alias = "sshConnection" )
70
+ ip : Optional [Union [ str , List [ str ]] ]
71
71
price_hr : Optional [float ] = Field (None , alias = "priceHr" )
72
72
environment_type : Optional [str ] = Field (None , alias = "environmentType" )
73
73
socket : Optional [str ]
Original file line number Diff line number Diff line change 11
11
@app .command ()
12
12
def view () -> None :
13
13
"""View current configuration"""
14
+ console .print ("[blue]Test[/blue]" )
14
15
config = Config ()
15
16
settings = config .view ()
16
17
You can’t perform that action at this time.
0 commit comments