@@ -612,6 +612,7 @@ def accounts_access(self):
612
612
self .add ('AUTH' , 'accounts' , 'access/keys' )
613
613
self .add ('AUTH' , 'accounts' , 'access/keys/rotate' )
614
614
self .add ('AUTH' , 'accounts' , 'access/logs/access_requests' )
615
+ self .add ('AUTH' , 'accounts' , 'access/policies' )
615
616
self .add ('AUTH' , 'accounts' , 'access/seats' )
616
617
self .add ('AUTH' , 'accounts' , 'access/tags' )
617
618
self .add ('AUTH' , 'accounts' , 'access/users' )
@@ -639,10 +640,15 @@ def zones_waiting_rooms(self):
639
640
def accounts_ai (self ):
640
641
""" :meta private: """
641
642
643
+ self .add ('AUTH' , 'accounts' , 'ai-gateway/gateways' )
644
+ self .add ('AUTH' , 'accounts' , 'ai-gateway/gateways' , 'logs' )
645
+
642
646
self .add ('AUTH' , 'accounts' , 'ai/authors/search' )
643
647
self .add ('AUTH' , 'accounts' , 'ai/finetunes' )
644
648
self .add ('AUTH' , 'accounts' , 'ai/finetunes' , 'finetune-assets' , content_type = {'POST' :'multipart/form-data' })
649
+ self .add ('AUTH' , 'accounts' , 'ai/finetunes/public' )
645
650
self .add ('AUTH' , 'accounts' , 'ai/models/search' )
651
+
646
652
self .add ('AUTH' , 'accounts' , 'ai/run' , content_type = {'POST' :['application/json' ,'application/octet-stream' ]})
647
653
648
654
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/baai/bge-base-en-v1.5' )
@@ -669,6 +675,7 @@ def accounts_ai(self):
669
675
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/meta/llama-3-8b-instruct' )
670
676
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/meta/m2m100-1.2b' )
671
677
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/microsoft/phi-2' )
678
+ self .add ('AUTH' , 'accounts' , 'ai/run/@cf/microsoft/phi-3-mini-4k-instruct' )
672
679
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/microsoft/resnet-50' , content_type = {'POST' :'application/octet-stream' })
673
680
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/mistral/mistral-7b-instruct-v0.1' )
674
681
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/mistral/mistral-7b-instruct-v0.1-vllm' )
@@ -686,13 +693,15 @@ def accounts_ai(self):
686
693
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/runwayml/stable-diffusion-v1-5-img2img' )
687
694
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/runwayml/stable-diffusion-v1-5-inpainting' )
688
695
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/stabilityai/stable-diffusion-xl-base-1.0' )
696
+ self .add ('AUTH' , 'accounts' , 'ai/run/@cf/stabilityai/stable-diffusion-xl-turbo' )
689
697
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/sven/test' )
690
698
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/thebloke/discolm-german-7b-v1-awq' )
691
699
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/thebloke/yarn-mistral-7b-64k-awq' )
692
700
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/tiiuae/falcon-7b-instruct' )
693
701
self .add ('AUTH' , 'accounts' , 'ai/run/@cf/tinyllama/tinyllama-1.1b-chat-v1.0' )
694
702
695
703
self .add ('AUTH' , 'accounts' , 'ai/run/@hf/baai/bge-base-en-v1.5' )
704
+ self .add ('AUTH' , 'accounts' , 'ai/run/@hf/baai/bge-m3' )
696
705
self .add ('AUTH' , 'accounts' , 'ai/run/@hf/google/gemma-7b-it' )
697
706
self .add ('AUTH' , 'accounts' , 'ai/run/@hf/mistral/mistral-7b-instruct-v0.2' )
698
707
self .add ('AUTH' , 'accounts' , 'ai/run/@hf/nexusflow/starling-lm-7b-beta' )
@@ -726,6 +735,7 @@ def accounts_extras(self):
726
735
self .add ('AUTH' , 'accounts' , 'alerting/v3/policies' )
727
736
728
737
self .add ('AUTH' , 'accounts' , 'calls/apps' )
738
+ self .add ('AUTH' , 'accounts' , 'calls/turn_keys' )
729
739
730
740
self .add ('AUTH' , 'accounts' , 'custom_ns' )
731
741
self .add ('AUTH' , 'accounts' , 'custom_ns/availability' )
@@ -1194,6 +1204,7 @@ def radar_http(self):
1194
1204
1195
1205
self .add ('AUTH' , 'radar/http/top/ases' )
1196
1206
self .add ('AUTH' , 'radar/http/top/ases/bot_class' )
1207
+ self .add ('AUTH' , 'radar/http/top/ases/browser_family' )
1197
1208
self .add ('AUTH' , 'radar/http/top/ases/device_type' )
1198
1209
self .add ('AUTH' , 'radar/http/top/ases/http_protocol' )
1199
1210
self .add ('AUTH' , 'radar/http/top/ases/http_version' )
@@ -1204,6 +1215,7 @@ def radar_http(self):
1204
1215
self .add ('AUTH' , 'radar/http/top/browser_families' )
1205
1216
self .add ('AUTH' , 'radar/http/top/locations' )
1206
1217
self .add ('AUTH' , 'radar/http/top/locations/bot_class' )
1218
+ self .add ('AUTH' , 'radar/http/top/locations/browser_family' )
1207
1219
self .add ('AUTH' , 'radar/http/top/locations/device_type' )
1208
1220
self .add ('AUTH' , 'radar/http/top/locations/http_protocol' )
1209
1221
self .add ('AUTH' , 'radar/http/top/locations/http_version' )
0 commit comments