-
Github Copilot on Code Studio
Hi everyone ! I tried my best to find an answer to this and I'm sorry if it's a duplicated question. Is there some kind of workaround to get Github Copilot working on the code studios or a way to link local VS Code to the code-server ?
-
How to call AI agent with python code?
Hello, everybody. I have already built a visual agent. I want to build a Dash webapp "calling" that visual agent. I saw this tutorial, but here tools are in a utils.py file. But I have created my tools as plugins (like mentioned here). I used these tools creating a visual agent. Is it possible to call my visual agent in a…
-
Using data from a dataset in a Send Message scenario step. (Scenario Variables?)
I've built a project that determines a set of upcoming worker hires and sends an email (with an Excel attachment) to a group that begins working their access needs. I want to make the body of the email dynamic by adding a summary of the count of workers and the range of start dates. I have that data in a separate, single…
-
can dataiku prompt engineering use claude sonnet 3.7 model now?
that will be nice
-
Can the hyper-parameter change for each new training model with each new dataset
Dear dataikuler thanks for reading my question. Hi, so my problem is when i re-train my model with different dataset (like my first dataset is from 12/10 /2024 to 12/10/2025 and my second dataset is 30/11/2024 to 30/11/2025) and then i deploy the second model i check the hyperparameter of each version and i see all of them…
-
Scenario questions&ideas
I want to modify the scenarios we use in production. As a developer, I don’t have access to the automation (prod) node, so let me explain the case: We have 8 different scenarios, each corresponding to a specific DOE type—for example, data ingestion, transportation calculation, dashboard output, etc. The first scenario is…
-
How to Automatically Create an Up-to-Date Dataset from Data Quality Rules ?
Hi everyone, I'm working on a project where I've applied several Data Quality rules to a dataset (MAST_prepared). Using the Data Quality tab, I clicked "Create dataset from rules data", which generated a new dataset (MAST_prepared_rules). 👉 Issue: this dataset is static. It does not update automatically when I rebuild the…
-
How to execute a MS-SQL stored procedure in Dataiku
Not a question but an answer as I couln't find any relevant posts. I solved this problem using a SQLExecutor2 in a Python recipe: from dataiku import SQLExecutor2 executor = SQLExecutor2(connection="connection name") sql_str = """Execute sp_name 'param1','param2', 'param3'""" output_df = executor.query_to_df(sql_str,…
-
Custom script for Container execution to push the base images
I'm running into an error ''' Error while checking kubernetes logs, returned 1 Error from server (BadRequest): container "c" in pod "dataiku-exec-python-afmkmmh" is waiting to start: image can't be pulled ''' The main reason here is because of the access issue for pushing the image to the internal repository. I was…
-
[Application Designer]How to display custom variables according to a dynamic value
I'm trying an application where I have some custom variables to edit. One of them is a dropdown menu that can be either "local" or "remote". According to this value I want different fields in custom variables to be displayed. For example for "local" we will only have fields "user" "path" and "fileType". For "remote" there…