Fazil

Results 43 comments of Fazil

Current workaroung is what I put into settings.py file: ``` from unittest.mock import patch, Mock patcher = patch( "kedro.io.data_catalog._get_credentials", Mock(side_effect=lambda name, credentials: credentials.get(name)) ) patcher.start() ``` I don't like mocking...

It would be nice to support this case as this would reduce some duplication. I use namespace to connect different data sources to same functions. I can give them different...

When I think about the namespace, I remember k8s generally. Basically same nodes/pipelines can be stored under different namespace. This helps running flow where user can use the same function...

@noklam Your example involves different function names, that case wouldnt require a new namespace imo but if a user did that, following should work ``` kedro run --nodes myfunc --namespace...

@merelcht I have created this draft PR to start a discussion on some points. Let me know what you people think so I can update it accordingly. Right now, test,...

> Thanks @lordsoffallen , I'll bring it up with the team 🙂 In the meantime could you maybe explain a bit more in what respect the other hugging face datasets...

Hey @merelcht @astrojuanlu, Sorry I also forgot about this for a while. Now getting back to it, I share my two cents here: LLM workflows is tricky to use with...

> @lordsoffallen Just yesterday I opened this discussion [kedro-org/kedro#3979](https://github.com/kedro-org/kedro/discussions/3979) I'd love to know what makes LLM workflows difficult in Kedro. Do you mind elaborating a bit more there? Sure, I'll...

Examples don't work as expected. Here is an output for trying to use one: ``` ../../../../miniconda3/envs/projx/lib/python3.10/site-packages/vertexai/generative_models/_generative_models.py:1456: in __init__ gapic_schema_dict = _convert_schema_dict_to_gapic(response_schema) ../../../../miniconda3/envs/projx/lib/python3.10/site-packages/vertexai/generative_models/_generative_models.py:1775: in _convert_schema_dict_to_gapic if "type" in gapic_schema_dict: E TypeError:...