Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ databricks-cli
streamlit
streamlit-echarts
streamlit-extras

langchain==0.0.223
openai==0.27.8
azure-core==1.24.1
azure.identity
azure-storage-blob
azure-data-tables
azure-data-tables
2 changes: 2 additions & 0 deletions src/cddp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,8 @@ def init_staging_sample_dataframe(spark, config):
output = task["output"]["type"]
type = task["input"]["type"]
task_landing_path = utils.get_path_for_current_env(type,task["input"]["path"])
if not task_landing_path:
task_landing_path = staging_path
if not os.path.exists(task_landing_path):
os.makedirs(task_landing_path)
filename = task['name']+".json"
Expand Down
Loading