Skip to content

Commit e2f31d8

Browse files
committed
Add missing interface methods in local module
1 parent 749cfc2 commit e2f31d8

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

llama-stack-client-kotlin-client-local/src/main/kotlin/com/llama/llamastack/client/local/InferenceServiceLocalImpl.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ class InferenceServiceLocalImpl constructor(private val clientOptions: LocalClie
6565
onStatsComplete = true
6666
}
6767

68+
override fun withRawResponse(): InferenceService.WithRawResponse {
69+
TODO("Not yet implemented")
70+
}
71+
6872
override fun chatCompletion(
6973
params: InferenceChatCompletionParams,
7074
requestOptions: RequestOptions,

llama-stack-client-kotlin-client-local/src/main/kotlin/com/llama/llamastack/client/local/LlamaStackClientClientLocalImpl.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ class LlamaStackClientClientLocalImpl constructor(private val clientOptions: Loc
2626
TODO("Not yet implemented")
2727
}
2828

29+
override fun withRawResponse(): LlamaStackClientClient.WithRawResponse {
30+
TODO("Not yet implemented")
31+
}
32+
2933
override fun toolgroups(): ToolgroupService {
3034
TODO("Not yet implemented")
3135
}

0 commit comments

Comments
 (0)