satisfactoscript 0.5.4__tar.gz → 0.5.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/PKG-INFO +1 -1
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/pyproject.toml +1 -1
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/core/core.py +8 -7
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript.egg-info/PKG-INFO +1 -1
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/README.md +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/setup.cfg +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/__init__.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/agentic/__init__.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/agentic/agent.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/core/__init__.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/core/config.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/core/loaders.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/core/registry.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/semantic/__init__.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript/semantic/semantic.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript.egg-info/SOURCES.txt +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript.egg-info/dependency_links.txt +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript.egg-info/requires.txt +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript.egg-info/top_level.txt +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/tests/test_config.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/tests/test_core.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/tests/test_dummy.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/tests/test_loaders.py +0 -0
- {satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/tests/test_registry.py +0 -0
|
@@ -189,13 +189,14 @@ class SatisfactoEngine:
|
|
|
189
189
|
from databricks.connect import DatabricksSession
|
|
190
190
|
from databricks.sdk.core import Config
|
|
191
191
|
|
|
192
|
-
#
|
|
193
|
-
#
|
|
194
|
-
#
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
192
|
+
# We explicitly inject the values from the environment variables
|
|
193
|
+
# into the Config object so Databricks Connect doesn't rely solely
|
|
194
|
+
# on the implicit ~\.databrickscfg profile.
|
|
195
|
+
conf = Config(
|
|
196
|
+
host=os.getenv("DATABRICKS_HOST"),
|
|
197
|
+
token=os.getenv("DATABRICKS_TOKEN"),
|
|
198
|
+
cluster_id=os.getenv("DATABRICKS_CLUSTER_ID")
|
|
199
|
+
)
|
|
199
200
|
|
|
200
201
|
self.spark = DatabricksSession.builder.sdkConfig(conf).getOrCreate()
|
|
201
202
|
print(" [Init] 🚀 Remote DatabricksSession (Databricks Connect) initialized.")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript.egg-info/requires.txt
RENAMED
|
File without changes
|
{satisfactoscript-0.5.4 → satisfactoscript-0.5.5}/src/satisfactoscript.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|