Commit ba703a2
authored
Fix AI ext openai streaming (#8553)
Should fix issue reported on discord:
https://discord.com/channels/841451783728529451/1356441709856292914/1356625059585986722
When translating the openai response
(https://platform.openai.com/docs/api-reference/chat-streaming/streaming)
to the anthropic style streaming response
(https://docs.anthropic.com/en/api/messages-streaming#event-types),
we're not sending a `content_block_start` event before the
`content_block_delta` events for the text response as required. Also the
default prompt doesn't contain a user message, so the user's query never
actually gets sent to the llm, just the system message with the context.1 parent 227475d commit ba703a2
3 files changed
+30
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
656 | 656 | | |
657 | 657 | | |
658 | 658 | | |
| 659 | + | |
| 660 | + | |
| 661 | + | |
| 662 | + | |
| 663 | + | |
| 664 | + | |
| 665 | + | |
659 | 666 | | |
660 | 667 | | |
661 | 668 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1421 | 1421 | | |
1422 | 1422 | | |
1423 | 1423 | | |
| 1424 | + | |
| 1425 | + | |
| 1426 | + | |
| 1427 | + | |
| 1428 | + | |
| 1429 | + | |
| 1430 | + | |
| 1431 | + | |
| 1432 | + | |
| 1433 | + | |
| 1434 | + | |
| 1435 | + | |
| 1436 | + | |
| 1437 | + | |
| 1438 | + | |
1424 | 1439 | | |
1425 | 1440 | | |
1426 | 1441 | | |
1427 | 1442 | | |
1428 | 1443 | | |
1429 | 1444 | | |
1430 | | - | |
| 1445 | + | |
1431 | 1446 | | |
1432 | 1447 | | |
1433 | 1448 | | |
| |||
1458 | 1473 | | |
1459 | 1474 | | |
1460 | 1475 | | |
1461 | | - | |
| 1476 | + | |
1462 | 1477 | | |
1463 | 1478 | | |
1464 | 1479 | | |
1465 | 1480 | | |
1466 | 1481 | | |
1467 | 1482 | | |
1468 | | - | |
| 1483 | + | |
1469 | 1484 | | |
1470 | 1485 | | |
1471 | 1486 | | |
| |||
1483 | 1498 | | |
1484 | 1499 | | |
1485 | 1500 | | |
1486 | | - | |
| 1501 | + | |
1487 | 1502 | | |
1488 | 1503 | | |
1489 | 1504 | | |
| |||
1497 | 1512 | | |
1498 | 1513 | | |
1499 | 1514 | | |
1500 | | - | |
| 1515 | + | |
| 1516 | + | |
| 1517 | + | |
1501 | 1518 | | |
1502 | 1519 | | |
1503 | 1520 | | |
| |||
0 commit comments