You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The number of monthly API credits remaining in the balance.",
24804
+
"description": "The number of monthly API credits remaining in the balance. This is the number of credits remaining in the balance.\n\nBoth the monetary value and the number of credits are returned, but they reflect the same value in the database.",
24805
24805
"type": "integer",
24806
24806
"format": "uint64",
24807
24807
"minimum": 0
24808
24808
},
24809
24809
"monthly_api_credits_remaining_monetary_value": {
24810
24810
"title": "double",
24811
-
"description": "The monetary value of the monthly API credits remaining in the balance.",
24811
+
"description": "The monetary value of the monthly API credits remaining in the balance. This gets re-upped every month, but if the credits are not used for a month they do not carry over to the next month.\n\nBoth the monetary value and the number of credits are returned, but they reflect the same value in the database.",
24812
24812
"type": "number",
24813
24813
"format": "money-usd"
24814
24814
},
24815
24815
"stable_api_credits_remaining": {
24816
-
"description": "The number of stable API credits remaining in the balance.",
24816
+
"description": "The number of stable API credits remaining in the balance. These do not get reset or re-upped every month. This is separate from the monthly credits. Credits will first pull from the monthly credits, then the stable credits. Stable just means that they do not get reset every month. A user will have stable credits if a Zoo employee granted them credits.\n\nBoth the monetary value and the number of credits are returned, but they reflect the same value in the database.",
24817
24817
"type": "integer",
24818
24818
"format": "uint64",
24819
24819
"minimum": 0
24820
24820
},
24821
24821
"stable_api_credits_remaining_monetary_value": {
24822
24822
"title": "double",
24823
-
"description": "The monetary value of stable API credits remaining in the balance.",
24823
+
"description": "The monetary value of stable API credits remaining in the balance. These do not get reset or re-upped every month. This is separate from the monthly credits. Credits will first pull from the monthly credits, then the stable credits. Stable just means that they do not get reset every month. A user will have stable credits if a Zoo employee granted them credits.\n\nBoth the monetary value and the number of credits are returned, but they reflect the same value in the database.",
24824
24824
"type": "number",
24825
24825
"format": "money-usd"
24826
24826
},
@@ -28554,11 +28554,29 @@
28554
28554
"$ref": "#/components/schemas/MlCopilotTool"
28555
28555
}
28556
28556
},
28557
+
"model": {
28558
+
"nullable": true,
28559
+
"description": "Override the default model with another.",
"description": "The project name, if any. This can be used to associate the message with a specific project.",
28560
28569
"type": "string"
28561
28570
},
28571
+
"reasoning_effort": {
28572
+
"nullable": true,
28573
+
"description": "Change the default reasoning effort.",
28574
+
"allOf": [
28575
+
{
28576
+
"$ref": "#/components/schemas/MlReasoningEffort"
28577
+
}
28578
+
]
28579
+
},
28562
28580
"source_ranges": {
28563
28581
"description": "The source ranges the user suggested to change. If empty, the content (prompt) will be used and is required.",
28564
28582
"type": "array",
@@ -28834,6 +28852,46 @@
28834
28852
}
28835
28853
]
28836
28854
},
28855
+
"MlCopilotSupportedModels": {
28856
+
"description": "AI models that we support using with the system. In theory any model with reasoning capabilities can work.",
28857
+
"oneOf": [
28858
+
{
28859
+
"description": "gpt-5-nano",
28860
+
"type": "string",
28861
+
"enum": [
28862
+
"gpt5_nano"
28863
+
]
28864
+
},
28865
+
{
28866
+
"description": "gpt-5-mini",
28867
+
"type": "string",
28868
+
"enum": [
28869
+
"gpt5_mini"
28870
+
]
28871
+
},
28872
+
{
28873
+
"description": "gpt-5-codex",
28874
+
"type": "string",
28875
+
"enum": [
28876
+
"gpt5_codex"
28877
+
]
28878
+
},
28879
+
{
28880
+
"description": "gpt-5",
28881
+
"type": "string",
28882
+
"enum": [
28883
+
"gpt5"
28884
+
]
28885
+
},
28886
+
{
28887
+
"description": "o3",
28888
+
"type": "string",
28889
+
"enum": [
28890
+
"o3"
28891
+
]
28892
+
}
28893
+
]
28894
+
},
28837
28895
"MlCopilotSystemCommand": {
28838
28896
"description": "The type of system command that can be sent to the ML Copilot.",
28839
28897
"oneOf": [
@@ -29143,6 +29201,32 @@
29143
29201
}
29144
29202
]
29145
29203
},
29204
+
"MlReasoningEffort": {
29205
+
"description": "Specify the amount of effort used in reasoning. Read the following for more info: https://platform.openai.com/docs/guides/reasoning#how-reasoning-works",
29206
+
"oneOf": [
29207
+
{
29208
+
"description": "Low reasoning",
29209
+
"type": "string",
29210
+
"enum": [
29211
+
"low"
29212
+
]
29213
+
},
29214
+
{
29215
+
"description": "Medium reasoning",
29216
+
"type": "string",
29217
+
"enum": [
29218
+
"medium"
29219
+
]
29220
+
},
29221
+
{
29222
+
"description": "High reasoning",
29223
+
"type": "string",
29224
+
"enum": [
29225
+
"high"
29226
+
]
29227
+
}
29228
+
]
29229
+
},
29146
29230
"MlToolResult": {
29147
29231
"description": "Responses from tools.",
29148
29232
"oneOf": [
@@ -29258,70 +29342,25 @@
29258
29342
}
29259
29343
]
29260
29344
},
29261
-
"ModelingAppIndividualSubscriptionTier": {
29262
-
"description": "The subscription tiers we offer for the Modeling App to individuals.",
29263
-
"oneOf": [
29264
-
{
29265
-
"description": "The free tier.",
29266
-
"type": "string",
29267
-
"enum": [
29268
-
"free"
29269
-
]
29270
-
},
29271
-
{
29272
-
"description": "The plus tier.",
29273
-
"type": "string",
29274
-
"enum": [
29275
-
"plus"
29276
-
]
29277
-
},
29278
-
{
29279
-
"description": "The pro tier.",
29280
-
"type": "string",
29281
-
"enum": [
29282
-
"pro"
29283
-
]
29284
-
}
29285
-
]
29286
-
},
29287
-
"ModelingAppOrganizationSubscriptionTier": {
29288
-
"description": "The subscription tiers we offer for the Modeling App to organizations.",
29289
-
"oneOf": [
29290
-
{
29291
-
"description": "The team tier.",
29292
-
"type": "string",
29293
-
"enum": [
29294
-
"team"
29295
-
]
29296
-
},
29297
-
{
29298
-
"description": "The enterprise tier.",
29299
-
"type": "string",
29300
-
"enum": [
29301
-
"enterprise"
29302
-
]
29303
-
}
29304
-
]
29305
-
},
29306
29345
"ModelingAppShareLinks": {
29307
-
"description": "The options for sharable links through the modeling app.",
29346
+
"description": "Modeling App share link capabilities.",
"description": "Slug of the modeling app subscription tier requested.",
43815
+
"type": "string"
43820
43816
},
43821
43817
"pay_annually": {
43822
43818
"nullable": true,
43823
43819
"description": "If the customer chooses to pay annually or monthly, we can add that here. The annual discount will apply if there is a discount for the subscription.",
43824
43820
"type": "boolean"
43825
43821
}
43826
-
}
43822
+
},
43823
+
"required": [
43824
+
"modeling_app"
43825
+
]
43827
43826
},
43828
43827
"ZooProductSubscriptionsUserRequest": {
43829
43828
"description": "A struct of Zoo product subscriptions a user can request.",
"description": "Slug of the modeling app subscription tier requested.",
43833
+
"type": "string"
43840
43834
},
43841
43835
"pay_annually": {
43842
43836
"nullable": true,
43843
43837
"description": "If the customer chooses to pay annually or monthly, we can add that here. The annual discount will apply if there is a discount for the subscription.",
43844
43838
"type": "boolean"
43845
43839
}
43846
-
}
43840
+
},
43841
+
"required": [
43842
+
"modeling_app"
43843
+
]
43847
43844
},
43848
43845
"ZooTool": {
43849
43846
"description": "The Zoo tools that can make API calls.",
0 commit comments