truefoundry 0.2.0rc4__tar.gz → 0.2.0rc5__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.2.0rc4 → truefoundry-0.2.0rc5}/PKG-INFO +1 -1
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/pyproject.toml +1 -1
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/cli.py +16 -3
- truefoundry-0.2.0rc5/truefoundry/deploy/__init__.py +1 -0
- truefoundry-0.2.0rc5/truefoundry/langchain/__init__.py +1 -0
- truefoundry-0.2.0rc5/truefoundry/ml/__init__.py +6 -0
- truefoundry-0.2.0rc4/truefoundry/deploy/__init__.py +0 -1
- truefoundry-0.2.0rc4/truefoundry/langchain/__init__.py +0 -1
- truefoundry-0.2.0rc4/truefoundry/ml/__init__.py +0 -4
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/README.md +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/__init__.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/__init__.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/agents/__init__.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/agents/base.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/agents/developer.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/agents/project_identifier.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/agents/tester.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/constants.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/exception.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/logger.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/__init__.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/ask.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/base.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/commit.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/docker_build.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/docker_run.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/file_type_counts.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/list_files.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/read_file.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/send_request.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/write_file.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/utils/diff.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/utils/pydantic_compat.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/cli/__init__.py +0 -0
- {truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/cli/__main__.py +0 -0
|
@@ -209,9 +209,22 @@ def cli(project_root_path: str, deploy: bool):
|
|
|
209
209
|
console.print(
|
|
210
210
|
"[bold magenta]TFY-Agent[/]: A tool for building and deploying [magenta]Jobs/Services[/] to the Truefoundry platform."
|
|
211
211
|
)
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
212
|
+
if AUTODEPLOY_OPENAI_BASE_URL is not None and AUTODEPLOY_OPENAI_API_KEY is not None:
|
|
213
|
+
console.print(
|
|
214
|
+
"[bold green]OpenAI credentials found in environment variables.[/]"
|
|
215
|
+
)
|
|
216
|
+
console.print(
|
|
217
|
+
"[bold reverse red]DISCLAIMER:[/] The contents of your project will be sent to OpenAI.",
|
|
218
|
+
"This operation will use tokens from your provided OpenAI account and may incur costs.",
|
|
219
|
+
)
|
|
220
|
+
else:
|
|
221
|
+
console.print(
|
|
222
|
+
"[bold reverse red]DISCLAIMER:[/] The contents of the project will be sent to OpenAI."
|
|
223
|
+
)
|
|
224
|
+
console.print(
|
|
225
|
+
"[dim]To use your own LLM, set the environment variables [dim italic green]AUTODEPLOY_OPENAI_BASE_URL[/],[/]",
|
|
226
|
+
"[dim][dim italic green]AUTODEPLOY_OPENAI_API_KEY[/], and [dim italic green]AUTODEPLOY_MODEL_NAME[/] for URL, API key, and LLM model name respectively.[/]",
|
|
227
|
+
)
|
|
215
228
|
console.print(
|
|
216
229
|
"[bold cyan]Note:[/] All changes will be committed to a new branch. Please ensure you have a repository."
|
|
217
230
|
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from servicefoundry import * # noqa: F403
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from servicefoundry.langchain import * # noqa: F403
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from servicefoundry import *
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from servicefoundry.langchain import *
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/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
|
|
File without changes
|
{truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/tools/file_type_counts.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{truefoundry-0.2.0rc4 → truefoundry-0.2.0rc5}/truefoundry/autodeploy/utils/pydantic_compat.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|