openrouter2 0.3.0

Typed async and blocking reqwest clients for the OpenRouter API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
macro_rules! static_route_methods {
    ($get_auth:ident, $get_public:ident, $post_auth:ident) => {
        $get_auth!(
            get_user_activity,
            get_user_activity_with_options,
            "activity",
            ActivityResponse
        );
        $get_auth!(
            get_analytics_meta,
            get_analytics_meta_with_options,
            "analytics/meta",
            AnalyticsMetaResponse
        );
        $post_auth!(
            query_analytics,
            query_analytics_with_options,
            "analytics/query",
            AnalyticsQueryRequest,
            AnalyticsQueryResponse
        );
        $post_auth!(
            create_audio_transcription,
            create_audio_transcription_with_options,
            "audio/transcriptions",
            TranscriptionRequest,
            TranscriptionResponse
        );
        $post_auth!(
            create_auth_key_code,
            create_auth_key_code_with_options,
            "auth/keys/code",
            AuthKeyCodeRequest,
            AuthKeyCodeResponse
        );
        $get_public!(
            list_benchmarks,
            list_benchmarks_with_options,
            "benchmarks",
            BenchmarksResponse
        );
        $get_auth!(
            list_byok_keys,
            list_byok_keys_with_options,
            "byok",
            ByokListResponse
        );
        $post_auth!(
            create_byok_key,
            create_byok_key_with_options,
            "byok",
            ByokCreateRequest,
            ByokCreateResponse
        );
        $get_public!(
            get_task_classifications,
            get_task_classifications_with_options,
            "classifications/task",
            TaskClassificationResponse
        );
        $get_auth!(
            get_credits,
            get_credits_with_options,
            "credits",
            CreditsResponse
        );
        $get_public!(
            get_app_rankings,
            get_app_rankings_with_options,
            "datasets/app-rankings",
            AppRankingsResponse
        );
        $get_public!(
            get_rankings_daily,
            get_rankings_daily_with_options,
            "datasets/rankings-daily",
            RankingsDailyResponse
        );
        $post_auth!(
            create_embeddings,
            create_embeddings_with_options,
            "embeddings",
            EmbeddingsRequest,
            EmbeddingsResponse
        );
        $get_public!(
            list_embedding_models,
            list_embedding_models_with_options,
            "embeddings/models",
            EmbeddingModelsResponse
        );
        $get_public!(
            list_zdr_endpoints,
            list_zdr_endpoints_with_options,
            "endpoints/zdr",
            EndpointsZdrResponse
        );
        $get_auth!(
            list_files,
            list_files_with_options,
            "files",
            FileListResponse
        );
        $get_auth!(
            list_guardrails,
            list_guardrails_with_options,
            "guardrails",
            GuardrailListResponse
        );
        $post_auth!(
            create_guardrail,
            create_guardrail_with_options,
            "guardrails",
            GuardrailCreateRequest,
            GuardrailCreateResponse
        );
        $get_auth!(
            list_key_assignments,
            list_key_assignments_with_options,
            "guardrails/assignments/keys",
            KeyAssignmentsResponse
        );
        $get_auth!(
            list_member_assignments,
            list_member_assignments_with_options,
            "guardrails/assignments/members",
            MemberAssignmentsResponse
        );
        $post_auth!(
            create_image,
            create_image_with_options,
            "images",
            ImageGenerationRequest,
            ImageGenerationResponse
        );
        $get_public!(
            list_image_models,
            list_image_models_with_options,
            "images/models",
            ImageModelsResponse
        );
        $get_auth!(
            get_current_key,
            get_current_key_with_options,
            "key",
            CurrentKeyResponse
        );
        $get_auth!(list_keys, list_keys_with_options, "keys", KeyListResponse);
        $post_auth!(
            create_key,
            create_key_with_options,
            "keys",
            KeyCreateRequest,
            KeyCreateResponse
        );
        $get_public!(
            list_models,
            list_models_with_options,
            "models",
            ModelListResponse
        );
        $get_public!(
            get_models_count,
            get_models_count_with_options,
            "models/count",
            ModelCountResponse
        );
        $get_auth!(
            list_user_models,
            list_user_models_with_options,
            "models/user",
            UserModelsResponse
        );
        $get_auth!(
            list_observability_destinations,
            list_observability_destinations_with_options,
            "observability/destinations",
            ObservabilityDestinationListResponse
        );
        $post_auth!(
            create_observability_destination,
            create_observability_destination_with_options,
            "observability/destinations",
            ObservabilityDestinationCreateRequest,
            ObservabilityDestinationCreateResponse
        );
        $get_auth!(
            list_organization_members,
            list_organization_members_with_options,
            "organization/members",
            OrganizationMembersResponse
        );
        $get_auth!(
            list_presets,
            list_presets_with_options,
            "presets",
            PresetListResponse
        );
        $get_public!(
            list_providers,
            list_providers_with_options,
            "providers",
            ProviderListResponse
        );
        $post_auth!(
            create_rerank,
            create_rerank_with_options,
            "rerank",
            RerankRequest,
            RerankResponse
        );
        $post_auth!(
            create_video,
            create_video_with_options,
            "videos",
            VideoGenerationRequest,
            VideoGenerationResponse
        );
        $get_public!(
            list_video_models,
            list_video_models_with_options,
            "videos/models",
            VideoModelsResponse
        );
        $get_auth!(
            list_workspaces,
            list_workspaces_with_options,
            "workspaces",
            WorkspaceListResponse
        );
        $post_auth!(
            create_workspace,
            create_workspace_with_options,
            "workspaces",
            WorkspaceCreateRequest,
            WorkspaceCreateResponse
        );
    };
}

#[cfg(test)]
macro_rules! static_route_operations {
    () => {
        [
            "get_user_activity",
            "get_analytics_meta",
            "query_analytics",
            "create_audio_transcription",
            "create_auth_key_code",
            "list_benchmarks",
            "list_byok_keys",
            "create_byok_key",
            "get_task_classifications",
            "get_credits",
            "get_app_rankings",
            "get_rankings_daily",
            "create_embeddings",
            "list_embedding_models",
            "list_zdr_endpoints",
            "list_files",
            "list_guardrails",
            "create_guardrail",
            "list_key_assignments",
            "list_member_assignments",
            "create_image",
            "list_image_models",
            "get_current_key",
            "list_keys",
            "create_key",
            "list_models",
            "get_models_count",
            "list_user_models",
            "list_observability_destinations",
            "create_observability_destination",
            "list_organization_members",
            "list_presets",
            "list_providers",
            "create_rerank",
            "create_video",
            "list_video_models",
            "list_workspaces",
            "create_workspace",
        ]
    };
}

macro_rules! dynamic_route_methods {
    ($get_auth:ident, $get_public:ident, $delete_auth:ident, $patch_auth:ident, $put_auth:ident, $post_auth:ident) => {
        $get_auth!(
            get_byok_key,
            get_byok_key_with_options,
            ByokResponse,
            |id: &str| format!("byok/{}", path_segment(id))
        );
        $delete_auth!(
            delete_byok_key,
            delete_byok_key_with_options,
            ByokDeleteResponse,
            |id: &str| format!("byok/{}", path_segment(id))
        );
        $patch_auth!(
            update_byok_key,
            update_byok_key_with_options,
            ByokUpdateRequest,
            ByokUpdateResponse,
            |id: &str| format!("byok/{}", path_segment(id))
        );
        $get_auth!(
            get_file_metadata,
            get_file_metadata_with_options,
            FileMetadataResponse,
            |file_id: &str| format!("files/{}", path_segment(file_id))
        );
        $delete_auth!(
            delete_file,
            delete_file_with_options,
            FileDeleteResponse,
            |file_id: &str| format!("files/{}", path_segment(file_id))
        );
        $get_auth!(
            get_guardrail,
            get_guardrail_with_options,
            GuardrailResponse,
            |id: &str| format!("guardrails/{}", path_segment(id))
        );
        $delete_auth!(
            delete_guardrail,
            delete_guardrail_with_options,
            GuardrailDeleteResponse,
            |id: &str| format!("guardrails/{}", path_segment(id))
        );
        $patch_auth!(
            update_guardrail,
            update_guardrail_with_options,
            GuardrailUpdateRequest,
            GuardrailUpdateResponse,
            |id: &str| format!("guardrails/{}", path_segment(id))
        );
        $get_auth!(
            list_guardrail_key_assignments,
            list_guardrail_key_assignments_with_options,
            KeyAssignmentsResponse,
            |id: &str| format!("guardrails/{}/assignments/keys", path_segment(id))
        );
        $post_auth!(
            bulk_assign_keys_to_guardrail,
            bulk_assign_keys_to_guardrail_with_options,
            BulkAssignKeysRequest,
            BulkAssignKeysResponse,
            |id: &str| format!("guardrails/{}/assignments/keys", path_segment(id))
        );
        $post_auth!(
            bulk_unassign_keys_from_guardrail,
            bulk_unassign_keys_from_guardrail_with_options,
            BulkUnassignKeysRequest,
            BulkUnassignKeysResponse,
            |id: &str| format!("guardrails/{}/assignments/keys/remove", path_segment(id))
        );
        $get_auth!(
            list_guardrail_member_assignments,
            list_guardrail_member_assignments_with_options,
            MemberAssignmentsResponse,
            |id: &str| format!("guardrails/{}/assignments/members", path_segment(id))
        );
        $post_auth!(
            bulk_assign_members_to_guardrail,
            bulk_assign_members_to_guardrail_with_options,
            BulkAssignMembersRequest,
            BulkAssignMembersResponse,
            |id: &str| format!("guardrails/{}/assignments/members", path_segment(id))
        );
        $post_auth!(
            bulk_unassign_members_from_guardrail,
            bulk_unassign_members_from_guardrail_with_options,
            BulkUnassignMembersRequest,
            BulkUnassignMembersResponse,
            |id: &str| format!("guardrails/{}/assignments/members/remove", path_segment(id))
        );
        $get_public!(
            list_image_model_endpoints,
            list_image_model_endpoints_with_options,
            ImageModelEndpointsResponse,
            |author: &str, slug: &str| format!(
                "images/models/{}/{}/endpoints",
                path_segment(author),
                path_segment(slug)
            )
        );
        $get_auth!(
            get_key,
            get_key_with_options,
            KeyResponse,
            |hash: &str| format!("keys/{}", path_segment(hash))
        );
        $delete_auth!(
            delete_key,
            delete_key_with_options,
            KeyDeleteResponse,
            |hash: &str| format!("keys/{}", path_segment(hash))
        );
        $patch_auth!(
            update_key,
            update_key_with_options,
            KeyUpdateRequest,
            KeyUpdateResponse,
            |hash: &str| format!("keys/{}", path_segment(hash))
        );
        $get_public!(
            get_model,
            get_model_with_options,
            ModelResponse,
            |author: &str, slug: &str| format!(
                "model/{}/{}",
                path_segment(author),
                path_segment(slug)
            )
        );
        $get_public!(
            list_model_endpoints,
            list_model_endpoints_with_options,
            ModelEndpointsResponse,
            |author: &str, slug: &str| format!(
                "models/{}/{}/endpoints",
                path_segment(author),
                path_segment(slug)
            )
        );
        $get_auth!(
            get_observability_destination,
            get_observability_destination_with_options,
            ObservabilityDestinationResponse,
            |id: &str| format!("observability/destinations/{}", path_segment(id))
        );
        $delete_auth!(
            delete_observability_destination,
            delete_observability_destination_with_options,
            ObservabilityDestinationDeleteResponse,
            |id: &str| format!("observability/destinations/{}", path_segment(id))
        );
        $patch_auth!(
            update_observability_destination,
            update_observability_destination_with_options,
            ObservabilityDestinationUpdateRequest,
            ObservabilityDestinationUpdateResponse,
            |id: &str| format!("observability/destinations/{}", path_segment(id))
        );
        $get_auth!(
            get_preset,
            get_preset_with_options,
            PresetResponse,
            |slug: &str| format!("presets/{}", path_segment(slug))
        );
        $post_auth!(
            create_preset_from_chat_completion,
            create_preset_from_chat_completion_with_options,
            ChatCompletionRequest,
            PresetCreateFromInferenceResponse,
            |slug: &str| format!("presets/{}/chat/completions", path_segment(slug))
        );
        $post_auth!(
            create_preset_from_message,
            create_preset_from_message_with_options,
            MessagesRequest,
            PresetCreateFromInferenceResponse,
            |slug: &str| format!("presets/{}/messages", path_segment(slug))
        );
        $post_auth!(
            create_preset_from_response,
            create_preset_from_response_with_options,
            ResponsesRequest,
            PresetCreateFromInferenceResponse,
            |slug: &str| format!("presets/{}/responses", path_segment(slug))
        );
        $get_auth!(
            list_preset_versions,
            list_preset_versions_with_options,
            PresetVersionListResponse,
            |slug: &str| format!("presets/{}/versions", path_segment(slug))
        );
        $get_auth!(
            get_preset_version,
            get_preset_version_with_options,
            PresetVersionResponse,
            |slug: &str, version: &str| format!(
                "presets/{}/versions/{}",
                path_segment(slug),
                path_segment(version)
            )
        );
        $get_auth!(
            get_video,
            get_video_with_options,
            VideoStatusResponse,
            |job_id: &str| format!("videos/{}", path_segment(job_id))
        );
        $get_auth!(
            get_workspace,
            get_workspace_with_options,
            WorkspaceResponse,
            |id: &str| format!("workspaces/{}", path_segment(id))
        );
        $delete_auth!(
            delete_workspace,
            delete_workspace_with_options,
            WorkspaceDeleteResponse,
            |id: &str| format!("workspaces/{}", path_segment(id))
        );
        $patch_auth!(
            update_workspace,
            update_workspace_with_options,
            WorkspaceUpdateRequest,
            WorkspaceUpdateResponse,
            |id: &str| format!("workspaces/{}", path_segment(id))
        );
        $get_auth!(
            list_workspace_budgets,
            list_workspace_budgets_with_options,
            WorkspaceBudgetListResponse,
            |id: &str| format!("workspaces/{}/budgets", path_segment(id))
        );
        $delete_auth!(
            delete_workspace_budget,
            delete_workspace_budget_with_options,
            WorkspaceBudgetDeleteResponse,
            |id: &str, interval: &str| format!(
                "workspaces/{}/budgets/{}",
                path_segment(id),
                path_segment(interval)
            )
        );
        $put_auth!(
            upsert_workspace_budget,
            upsert_workspace_budget_with_options,
            WorkspaceBudgetUpsertRequest,
            WorkspaceBudgetUpsertResponse,
            |id: &str, interval: &str| format!(
                "workspaces/{}/budgets/{}",
                path_segment(id),
                path_segment(interval)
            )
        );
        $post_auth!(
            bulk_add_workspace_members,
            bulk_add_workspace_members_with_options,
            BulkAddWorkspaceMembersRequest,
            BulkAddWorkspaceMembersResponse,
            |id: &str| format!("workspaces/{}/members/add", path_segment(id))
        );
        $post_auth!(
            bulk_remove_workspace_members,
            bulk_remove_workspace_members_with_options,
            BulkRemoveWorkspaceMembersRequest,
            BulkRemoveWorkspaceMembersResponse,
            |id: &str| format!("workspaces/{}/members/remove", path_segment(id))
        );
    };
}

#[cfg(test)]
macro_rules! dynamic_route_operations {
    () => {
        [
            "get_byok_key",
            "delete_byok_key",
            "update_byok_key",
            "get_file_metadata",
            "delete_file",
            "get_guardrail",
            "delete_guardrail",
            "update_guardrail",
            "list_guardrail_key_assignments",
            "bulk_assign_keys_to_guardrail",
            "bulk_unassign_keys_from_guardrail",
            "list_guardrail_member_assignments",
            "bulk_assign_members_to_guardrail",
            "bulk_unassign_members_from_guardrail",
            "list_image_model_endpoints",
            "get_key",
            "delete_key",
            "update_key",
            "get_model",
            "list_model_endpoints",
            "get_observability_destination",
            "delete_observability_destination",
            "update_observability_destination",
            "get_preset",
            "create_preset_from_chat_completion",
            "create_preset_from_message",
            "create_preset_from_response",
            "list_preset_versions",
            "get_preset_version",
            "get_video",
            "get_workspace",
            "delete_workspace",
            "update_workspace",
            "list_workspace_budgets",
            "delete_workspace_budget",
            "upsert_workspace_budget",
            "bulk_add_workspace_members",
            "bulk_remove_workspace_members",
        ]
    };
}

pub(crate) use dynamic_route_methods;
#[cfg(test)]
pub(crate) use dynamic_route_operations;
pub(crate) use static_route_methods;
#[cfg(test)]
pub(crate) use static_route_operations;