We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a3a0c4 commit 010f438Copy full SHA for 010f438
src/llama_stack_provider_ragas/remote/ragas_remote_eval.py
@@ -111,7 +111,9 @@ def kfp_client(self):
111
def _get_kfp_token(self) -> str:
112
if self.config.kubeflow_config.pipelines_api_token:
113
logger.info("Using KUBEFLOW_PIPELINES_TOKEN from config")
114
- return self.config.kubeflow_config.pipelines_api_token.get_secret_value()
+ return str(
115
+ self.config.kubeflow_config.pipelines_api_token.get_secret_value()
116
+ )
117
118
try:
119
from .kubeflow.utils import _load_kube_config
0 commit comments