WIP: Stream in completions

Drop dependency on tokio introduced by async-openai and do it ourselves.

The approach I'm taking of replacing instead of appending is causing issues. Need to just append.
This commit is contained in:
Nathan Sobo 2023-05-22 20:28:22 -06:00
parent 912fd23006
commit 7e6cccfa3d
9 changed files with 209 additions and 236 deletions

View file

@ -11,11 +11,16 @@ doctest = false
[dependencies]
editor = { path = "../editor" }
gpui = { path = "../gpui" }
util = { path = "../util" }
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
async-openai = "0.10.3"
pulldown-cmark = "0.9.2"
futures.workspace = true
isahc.workspace = true
unindent.workspace = true
async-stream = "0.3.5"
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }