Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions .speakeasy/in.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29988,13 +29988,71 @@ paths:
requestBody:
content:
application/json:
example:
model: 'typesafe/jev-1.13'
questions:
is_bug:
criteria:
'false': 'The customer is asking a question or requesting a feature.'
'true': 'The customer describes broken or unexpected product behavior.'
instructions: 'Is the customer reporting a software defect?'
type: 'noul'
team:
criteria:
account: 'Login, permissions, or profile issues.'
frontend: 'Rendering, layout, or browser compatibility issues.'
payments: 'Checkout, billing, or payment processing issues.'
instructions: 'Which team should own this ticket?'
type: 'choice'
urgency:
criteria:
- 'Can wait for the next release'
- 'Should be fixed this week'
- 'Blocking revenue right now'
instructions: 'How urgent is this ticket?'
type: 'score'
state:
customer_tier: 'enterprise'
ticket: 'My checkout page shows a blank screen after I click Pay. I have tried two browsers.'
schema:
$ref: '#/components/schemas/DecisionsRequest'
required: true
responses:
'200':
content:
application/json:
example:
answers:
is_bug:
noul: 0.96
type: 'noul'
team:
choice: 'payments'
confidence: 0.75
probabilities:
account: 0
frontend: 0.16
payments: 0.84
type: 'choice'
urgency:
confidence: 0.99
legend:
'0': 'Can wait for the next release'
'1': 'Should be fixed this week'
'2': 'Blocking revenue right now'
probabilities:
'0': 0
'1': 0.01
'2': 0.99
score: 1.99
type: 'score'
id: 'gen-dec-1789738314-X5e5eKGQdvR9rblyX250'
model: 'typesafe/jev-1.13-20260917'
provider: 'TypeSafe'
usage:
cost: 0.000019992
input_tokens: 476
output_tokens: 70
schema:
$ref: '#/components/schemas/DecisionsResponse'
description: 'Decisions response'
Expand Down
Loading