Skip to content

Commit 668a7c5

Browse files
committed
chore: update ollama integration test
1 parent d4c9df5 commit 668a7c5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ jobs:
149149
golem-cli worker invoke test:llm/ollama-1 test5
150150
golem-cli worker invoke test:llm/ollama-1 test6
151151
golem-cli worker invoke test:llm/ollama-1 test7
152+
golem-cli worker invoke test:llm/ollama-1 test8
152153
publish-all:
153154
needs:
154155
- tests

test/components-rust/test-llm/src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub fn consume_next_event(stream: &llm::ChatStream) -> Option<String> {
3838
}
3939
}
4040
}
41-
llm::StreamEvent::Finish(finish) => {}
41+
llm::StreamEvent::Finish(..) => {}
4242
llm::StreamEvent::Error(error) => {
4343
result.push_str(&format!(
4444
"\nERROR: {:?} {} ({})\n",

0 commit comments

Comments
 (0)