-
Creating a QABot about Dataiku using "Dataiku Answers"
Hello, I thought it would be very helpful for all users if we could create a QABot about Dataiku using "Dataiku Answers." However, obtaining text data related to documentation or knowledge is not easy. According to Dataiku's website terms of services, web scraping is prohibited, so I gave up on preparing data through…
-
User based data filtering in Dash webapp
In a Dash webapp that requires Dataiku authentication we would like to filter displayed based on the webapp user. It is possible to retrieve the authenticated user in the webapp: dataiku.api_client().get_auth_info_from_browser_headers(request_headers) My question is how to best propagate the user ID to the backend so it…
-
Creating a Web App with React Frontend
Hi Community , Does anyone know if it is possible or even recommended to use React for the frontend of a web app in DSS? If so, can you please share how you accomplished setting this up with the Flask backend. Thank You!
-
gpt-4o no multimodality supported with chatbot webapp
Hi, I have these options for a model to use for an LLM powered webapp: And I get this option to upload images: With ChatGPT-4o however there is no "omni" support currently... And my webapp looks like this: Has anyone figured it out?
-
DataIKU visual webapp with Gemini 1.5 pro
If I use Gemini 1.5, the upload option is visible to upload user files as you can see below: But there's an error when using it with or without uploaded files: File "/data/dataiku/dss_data/web_apps/DS1948/V9u5gZh/python-lib/backend/routes/ws/answer_streaming.py", line 173, in process_and_stream_answer for chunk in…
-
Disable dash instance created before running dash project on dataiku
Hello, I have developped a dash web-app using Dash packag, and it works well locally. However, once I have uploaded it to Dataiku, it is not working as expected. My question is: how should I remove the "app = dash.Dash(...)" instance defined in dataiku? Is there a way to disable it and enable the dash instance declared in…
-
*** caught segfault *** address 0x7fffed999b70, cause 'invalid permissions'
Hi, I'm facing the above mentioned error when I'm trying to access a dataiku managed folder of this project which is connected to a sharepoint location. The line of code used to access the folder is as mentioned below: dkuManagedFolderDownloadPath("folder name", fileReadPath) Operating system used: windows 10 Operating…
-
Update Dataset with Dash
Hi there, I am relatively new to Dataiku, I have looked in the forum for a similar question, but I haven't found anything. I am developping a webapp with Dash. I want the user to modify some values of a dataset, and these changes to be updated in the flow. Given on some inputs of the user, the webapp displays a…
-
Dataku 12: Do Streamlit Code Studios only support Streamlit versions compatible with Python 3.7?
Hi, I checked out our default Streamlit Code Studio template and see this on 12.1: If so, this is a non-starter for us. We have to be able to use Python 3.8 and above. Streamlit itself even says they do not support Python 3.7. From the link: Streamlit currently supports versions 3.8, 3.9, 3.10, and 3.11 of Python. I hope…
-
Faster option for writing small data to Snowflake from code studio
I have a little python streamlit webapp I've made in code studio that outputs data generated to a snowflake table that's in the same project. The way I'm attempting to do it (code below) is taking up to 2 minutes to upload the data but it's only ever a couple of rows of data (<10), 20 columns and no large fields. I would…