We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00989ed commit e6e159cCopy full SHA for e6e159c
test/eca/llm_util_test.clj
@@ -30,8 +30,8 @@
30
(with-open [r (io/reader (ByteArrayInputStream. (.getBytes (str "{\"bar\": \"baz\"}\n"
31
"{\"bar\": \"foo\"}"))))]
32
(is (match?
33
- [[nil {:bar "baz"}]
34
- [nil {:bar "foo"}]]
+ [["data" {:bar "baz"}]
+ ["data" {:bar "foo"}]]
35
(llm-util/event-data-seq r)))))
36
(testing "Ignore [DONE] when exists"
37
(with-open [r (io/reader (ByteArrayInputStream. (.getBytes (str "data: {\"type\": \"foo.bar\"}\n"
0 commit comments