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 d4c9df5 commit 668a7c5Copy full SHA for 668a7c5
.github/workflows/ci.yaml
@@ -149,6 +149,7 @@ jobs:
149
golem-cli worker invoke test:llm/ollama-1 test5
150
golem-cli worker invoke test:llm/ollama-1 test6
151
golem-cli worker invoke test:llm/ollama-1 test7
152
+ golem-cli worker invoke test:llm/ollama-1 test8
153
publish-all:
154
needs:
155
- tests
test/components-rust/test-llm/src/utils.rs
@@ -38,7 +38,7 @@ pub fn consume_next_event(stream: &llm::ChatStream) -> Option<String> {
38
}
39
40
41
- llm::StreamEvent::Finish(finish) => {}
+ llm::StreamEvent::Finish(..) => {}
42
llm::StreamEvent::Error(error) => {
43
result.push_str(&format!(
44
"\nERROR: {:?} {} ({})\n",
0 commit comments