Implement a first version of a streamed chat API

This commit is contained in:
Clément Renault 2025-05-14 11:18:21 +02:00 committed by Kerollmops
parent 223f5b7283
commit fbd3558f04
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

4
Cargo.lock generated
View File

@ -442,7 +442,7 @@ dependencies = [
"derive_builder 0.20.2", "derive_builder 0.20.2",
"eventsource-stream", "eventsource-stream",
"futures", "futures",
"rand", "rand 0.8.5",
"reqwest", "reqwest",
"reqwest-eventsource", "reqwest-eventsource",
"secrecy", "secrecy",
@ -499,7 +499,7 @@ dependencies = [
"getrandom 0.2.15", "getrandom 0.2.15",
"instant", "instant",
"pin-project-lite", "pin-project-lite",
"rand", "rand 0.8.5",
"tokio", "tokio",
] ]