truefoundry 0.3.0rc11__tar.gz → 0.3.0rc13__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.
Potentially problematic release.
This version of truefoundry might be problematic. Click here for more details.
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/PKG-INFO +1 -1
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/pyproject.toml +1 -1
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/auto_gen/models.py +9 -5
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/lib/deploy_workflow.py +4 -2
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/README.md +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/agents/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/agents/base.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/agents/developer.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/agents/project_identifier.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/agents/tester.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/cli.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/constants.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/exception.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/logger.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/ask.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/base.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/commit.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/docker_build.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/docker_run.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/file_type_counts.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/list_files.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/read_file.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/send_request.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/write_file.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/utils/client.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/utils/diff.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/utils/pydantic_compat.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/cli/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/cli/__main__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/builders/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/builders/dockerfile.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/builders/tfy_notebook_buildpack/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/builders/tfy_notebook_buildpack/dockerfile_template.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/builders/tfy_python_buildpack/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/builders/tfy_python_buildpack/dockerfile_template.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/docker_service.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/cli.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/apply_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/build_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/build_logs_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/create_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/delete_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/deploy_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/get_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/list_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/login_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/logout_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/logs_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/patch_application_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/patch_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/redeploy_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/terminate_comand.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/trigger_command.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/config.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/console.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/const.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/display_util.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/util.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/core/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/core/login.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/core/logout.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/__main__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/app.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/build.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/remote/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/remote/context.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/remote/method.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/remote/remote.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/route.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/service.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/utils.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/io/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/io/output_callback.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/io/rich_output_callback.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/json_util.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/auth/auth_service_client.py +2 -2
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/auth/credential_file_manager.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/auth/credential_provider.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/auth/servicefoundry_session.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/clients/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/clients/servicefoundry_client.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/clients/shell_client.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/clients/utils.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/const.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/dao/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/dao/application.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/dao/apply.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/dao/version.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/dao/workspace.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/exceptions.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/logs_utils.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/messages.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/model/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/model/entity.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/session.py +1 -1
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/util.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/win32.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/lib/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/lib/deploy.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/lib/deployable_patched_models.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/lib/models.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/lib/patched_models.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/lib/source.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/langchain/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/langchain/deprecated.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/langchain/truefoundry_chat.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/langchain/truefoundry_embeddings.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/langchain/truefoundry_llm.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/langchain/utils.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/logger.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/ml/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/pydantic_v1.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/python_deploy_codegen.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/version.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/__init__.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/container_task.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/example/deploy.sh +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/example/hello_world_package/workflow.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/example/package/test_workflow.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/example/truefoundry.yaml +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/example/workflow.yaml +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/map_task.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/python_task.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/task.py +0 -0
- {truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/workflow.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: application.json
|
|
3
|
-
# timestamp: 2024-08-
|
|
3
|
+
# timestamp: 2024-08-29T07:46:00+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -722,7 +722,7 @@ class PythonBuild(BaseModel):
|
|
|
722
722
|
..., description="+value=tfy-python-buildpack"
|
|
723
723
|
)
|
|
724
724
|
python_version: constr(regex=r"^\d+(\.\d+){1,2}([\-\.a-z0-9]+)?$") = Field(
|
|
725
|
-
"3.
|
|
725
|
+
"3.11",
|
|
726
726
|
description="+label=Python version\n+usage=Python version to run your application. Should be one of the tags listed on [Official Python Docker Page](https://hub.docker.com/_/python)\n+message=Please enter a valid Python version tag",
|
|
727
727
|
)
|
|
728
728
|
build_context_path: str = Field(
|
|
@@ -1018,7 +1018,7 @@ class TaskPythonBuild(BaseModel):
|
|
|
1018
1018
|
description="+docs=FQN of the container registry. You can the FQN of your desired container registry (or add one)\nin the Integrations page[Integrations](https://app.truefoundry.tech/integrations?tab=docker-registry) page\n+label=Docker Registry\n+usage=FQN of the container registry. If you can't find your registry here,\nadd it through the [Integrations](/integrations?tab=docker-registry) page",
|
|
1019
1019
|
)
|
|
1020
1020
|
python_version: constr(regex=r"^\d+(\.\d+){1,2}([\-\.a-z0-9]+)?$") = Field(
|
|
1021
|
-
"3.
|
|
1021
|
+
"3.11",
|
|
1022
1022
|
description="+label=Python version\n+usage=Python version to run your application. Should be one of the tags listed on [Official Python Docker Page](https://hub.docker.com/_/python)\n+message=Please enter a valid Python version tag",
|
|
1023
1023
|
)
|
|
1024
1024
|
requirements_path: Optional[str] = Field(
|
|
@@ -1109,11 +1109,11 @@ class WorkbenchImage(BaseModel):
|
|
|
1109
1109
|
)
|
|
1110
1110
|
build_script: Optional[constr(min_length=1, max_length=1024)] = Field(
|
|
1111
1111
|
None,
|
|
1112
|
-
description=
|
|
1112
|
+
description='+label=Build Script\n+usage=The build script to run when building the image.\nThis will be executed as the last step in the docker build process as the root user (RUN DEBIAN_FRONTEND=noninteractive bash -ex build_script.sh)\n+placeholder=Enter the build script\n+uiType=CodeEditor\n+uiProps={"language":"shell"}',
|
|
1113
1113
|
)
|
|
1114
1114
|
docker_registry: Optional[str] = Field(
|
|
1115
1115
|
None,
|
|
1116
|
-
description=
|
|
1116
|
+
description='+docs=FQN of the container registry. You can the FQN of your desired container registry (or add one)\nin the Integrations page[Integrations](https://app.truefoundry.tech/integrations?tab=docker-registry) page\n+label=Docker Registry\n+uiType=IntegrationSelect\n+uiProps={"integrationType":"docker-registry"}\n+usage=FQN of the container registry. If you can\'t find your registry here,\nadd it through the [Integrations](/integrations?tab=docker-registry) page',
|
|
1117
1117
|
)
|
|
1118
1118
|
|
|
1119
1119
|
|
|
@@ -1693,6 +1693,10 @@ class ApplicationSet(BaseModel):
|
|
|
1693
1693
|
None,
|
|
1694
1694
|
description='+label=Values\n+usage=Values to be used to render components for the application set.\n+icon=fa-file\n+uiType=YamlInput\n+uiProps={"allowAllValues":true}',
|
|
1695
1695
|
)
|
|
1696
|
+
workspace_fqn: Optional[str] = Field(
|
|
1697
|
+
None,
|
|
1698
|
+
description="+label=Workspace FQN\n+docs=Fully qualified name of the workspace\n+uiType=Hidden",
|
|
1699
|
+
)
|
|
1696
1700
|
|
|
1697
1701
|
|
|
1698
1702
|
class Application(BaseModel):
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/v2/lib/deploy_workflow.py
RENAMED
|
@@ -283,11 +283,13 @@ def deploy_workflow(
|
|
|
283
283
|
)
|
|
284
284
|
|
|
285
285
|
client = ServiceFoundryServiceClient()
|
|
286
|
-
|
|
286
|
+
deployment = client.deploy_application(
|
|
287
287
|
workspace_id=workspace_id, application=workflow
|
|
288
288
|
)
|
|
289
289
|
logger.info(
|
|
290
290
|
"🚀 Deployment started for application '%s'. Deployment FQN is '%s'.",
|
|
291
291
|
workflow.name,
|
|
292
|
-
|
|
292
|
+
deployment.fqn,
|
|
293
293
|
)
|
|
294
|
+
deployment_url = f"{client.base_url.strip('/')}/applications/{deployment.applicationId}?tab=deployments"
|
|
295
|
+
logger.info("You can find the application on the dashboard:- '%s'", deployment_url)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/agents/project_identifier.py
RENAMED
|
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
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/docker_build.py
RENAMED
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/file_type_counts.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/tools/send_request.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/autodeploy/utils/pydantic_compat.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/builders/__init__.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/builders/dockerfile.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/builder/docker_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/apply_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/build_command.py
RENAMED
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/create_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/delete_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/deploy_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/get_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/list_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/login_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/logout_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/logs_command.py
RENAMED
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/patch_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/redeploy_command.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/terminate_comand.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/cli/commands/trigger_command.py
RENAMED
|
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
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/__init__.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/__main__.py
RENAMED
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/build.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/remote/method.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/remote/remote.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/route.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/service.py
RENAMED
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/function_service/utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/io/rich_output_callback.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/auth/auth_service_client.py
RENAMED
|
@@ -77,8 +77,6 @@ class ServiceFoundryServerAuthServiceClient(AuthServiceClient):
|
|
|
77
77
|
data = {"tenantName": self._tenant_name}
|
|
78
78
|
res = requests.post(url, json=data)
|
|
79
79
|
res = request_handling(res)
|
|
80
|
-
# TODO: temporary cleanup of incorrect attributes
|
|
81
|
-
res = {"userCode": res.get("userCode"), "deviceCode": res.get("deviceCode")}
|
|
82
80
|
return DeviceCode.parse_obj(res)
|
|
83
81
|
|
|
84
82
|
def get_token_from_device_code(
|
|
@@ -147,6 +145,8 @@ class AuthServerServiceClient(AuthServiceClient):
|
|
|
147
145
|
data = {"tenantName": self._tenant_name}
|
|
148
146
|
res = requests.post(url, json=data)
|
|
149
147
|
res = request_handling(res)
|
|
148
|
+
# TODO: temporary cleanup of incorrect attributes
|
|
149
|
+
res = {"userCode": res.get("userCode"), "deviceCode": res.get("deviceCode")}
|
|
150
150
|
return DeviceCode.parse_obj(res)
|
|
151
151
|
|
|
152
152
|
def get_token_from_device_code(
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/auth/credential_provider.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/deploy/lib/clients/shell_client.py
RENAMED
|
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
|
|
File without changes
|
|
@@ -147,10 +147,10 @@ def _login_with_device_code(
|
|
|
147
147
|
message = f"Please open the following URL in a browser and enter the code {device_code.user_code} when prompted: {device_code.verification_url}"
|
|
148
148
|
else:
|
|
149
149
|
auto_open_url = device_code.get_user_clickable_url(auth_host=base_url)
|
|
150
|
-
output_hook.print_line(message)
|
|
151
150
|
if auto_open_url:
|
|
152
151
|
output_hook.print_line(f"Opening:- {auto_open_url}")
|
|
153
152
|
click.launch(auto_open_url)
|
|
153
|
+
output_hook.print_line(message)
|
|
154
154
|
return auth_service.get_token_from_device_code(
|
|
155
155
|
device_code=device_code.device_code,
|
|
156
156
|
timeout=device_code.expires_in_seconds,
|
|
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
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/langchain/truefoundry_embeddings.py
RENAMED
|
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
|
|
File without changes
|
{truefoundry-0.3.0rc11 → truefoundry-0.3.0rc13}/truefoundry/workflow/example/truefoundry.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|