File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
37
37
$ rvm list gemsets
38
38
$ gem install --verbose pwn
39
39
$ pwn
40
- pwn[v0.4.659 ]:001 >>> PWN.help
40
+ pwn[v0.4.660 ]:001 >>> PWN.help
41
41
```
42
42
43
43
[ ![ Installing the pwn Security Automation Framework] ( https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png )] ( https://youtu.be/G7iLUY4FzsI )
@@ -52,7 +52,7 @@ $ rvm use ruby-3.2.2@pwn
52
52
$ gem uninstall --all --executables pwn
53
53
$ gem install --verbose pwn
54
54
$ pwn
55
- pwn[v0.4.659 ]:001 >>> PWN.help
55
+ pwn[v0.4.660 ]:001 >>> PWN.help
56
56
```
57
57
58
58
Original file line number Diff line number Diff line change @@ -643,11 +643,21 @@ module OpenAI
643
643
fine_tune_id: 'required - respective :id value returned from #list_fine_tunes',
644
644
)
645
645
646
+ response = #{ self } .cancel_fine_tune(
647
+ token: 'required - Bearer token',
648
+ fine_tune_id: 'required - respective :id value returned from #list_fine_tunes',
649
+ )
650
+
646
651
response = #{ self } .get_fine_tune_events(
647
652
token: 'required - Bearer token',
648
653
fine_tune_id: 'required - respective :id value returned from #list_fine_tunes',
649
654
)
650
655
656
+ response = #{ self } .delete_fine_tune_model(
657
+ token: 'required - Bearer token',
658
+ model: 'required - model to delete'
659
+ )
660
+
651
661
response = #{ self } .list_files(
652
662
token: 'required - Bearer token'
653
663
)
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module PWN
4
- VERSION = '0.4.659 '
4
+ VERSION = '0.4.660 '
5
5
end
You can’t perform that action at this time.
0 commit comments