tinybird 0.0.1.dev256__py3-none-any.whl → 0.0.1.dev258__py3-none-any.whl
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 tinybird might be problematic. Click here for more details.
- tinybird/datafile/common.py +2 -0
- tinybird/tb/__cli__.py +2 -2
- tinybird/tb/modules/agent/agent.py +168 -220
- tinybird/tb/modules/agent/banner.py +1 -0
- tinybird/tb/modules/agent/prompts.py +154 -6
- tinybird/tb/modules/agent/tools/analyze.py +3 -1
- tinybird/tb/modules/agent/tools/append.py +34 -28
- tinybird/tb/modules/agent/tools/build.py +3 -2
- tinybird/tb/modules/agent/tools/create_datafile.py +60 -11
- tinybird/tb/modules/agent/tools/deploy.py +3 -7
- tinybird/tb/modules/agent/tools/deploy_check.py +2 -7
- tinybird/tb/modules/agent/tools/diff_resource.py +1 -3
- tinybird/tb/modules/agent/tools/execute_query.py +1 -1
- tinybird/tb/modules/agent/tools/get_endpoint_stats.py +1 -2
- tinybird/tb/modules/agent/tools/get_openapi_definition.py +27 -13
- tinybird/tb/modules/agent/tools/mock.py +19 -13
- tinybird/tb/modules/agent/tools/plan.py +12 -20
- tinybird/tb/modules/agent/tools/request_endpoint.py +5 -4
- tinybird/tb/modules/agent/utils.py +15 -6
- tinybird/tb/modules/cli.py +9 -7
- {tinybird-0.0.1.dev256.dist-info → tinybird-0.0.1.dev258.dist-info}/METADATA +2 -2
- {tinybird-0.0.1.dev256.dist-info → tinybird-0.0.1.dev258.dist-info}/RECORD +25 -25
- {tinybird-0.0.1.dev256.dist-info → tinybird-0.0.1.dev258.dist-info}/WHEEL +0 -0
- {tinybird-0.0.1.dev256.dist-info → tinybird-0.0.1.dev258.dist-info}/entry_points.txt +0 -0
- {tinybird-0.0.1.dev256.dist-info → tinybird-0.0.1.dev258.dist-info}/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ from typing import Optional
|
|
|
3
3
|
import click
|
|
4
4
|
from pydantic_ai import RunContext
|
|
5
5
|
|
|
6
|
-
from tinybird.tb.modules.agent.utils import TinybirdAgentContext, show_confirmation, show_input
|
|
6
|
+
from tinybird.tb.modules.agent.utils import AgentRunCancelled, TinybirdAgentContext, show_confirmation, show_input
|
|
7
7
|
from tinybird.tb.modules.datafile.fixture import persist_fixture
|
|
8
8
|
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
9
9
|
|
|
@@ -14,6 +14,7 @@ def mock(
|
|
|
14
14
|
data_format: str,
|
|
15
15
|
rows: int,
|
|
16
16
|
context: Optional[str] = None,
|
|
17
|
+
cloud: bool = False,
|
|
17
18
|
) -> str:
|
|
18
19
|
"""Create mock data for a datasource
|
|
19
20
|
|
|
@@ -22,34 +23,36 @@ def mock(
|
|
|
22
23
|
data_format: Format of the mock data to create. Options: ndjson, csv
|
|
23
24
|
rows: Number of rows to create. If not provided, the default is 10
|
|
24
25
|
context: Extra context to be used to generate the mock data. Optional.
|
|
26
|
+
cloud: Whether to generate the mock data in the cloud or local environment. Optional.
|
|
25
27
|
|
|
26
28
|
Returns:
|
|
27
29
|
str: Message indicating the success or failure of the mock data generation
|
|
28
30
|
"""
|
|
29
31
|
try:
|
|
30
32
|
ctx.deps.thinking_animation.stop()
|
|
33
|
+
cloud_or_local = "Cloud" if cloud else "Local"
|
|
31
34
|
confirmation = show_confirmation(
|
|
32
|
-
title=f"Generate mock data for datasource '{datasource_name}'?",
|
|
35
|
+
title=f"Generate mock data for datasource '{datasource_name}' in Tinybird {cloud_or_local}?",
|
|
33
36
|
skip_confirmation=ctx.deps.dangerously_skip_permissions,
|
|
34
37
|
)
|
|
35
38
|
|
|
36
39
|
if confirmation == "review":
|
|
37
|
-
click.echo()
|
|
38
40
|
feedback = show_input(ctx.deps.workspace_name)
|
|
39
41
|
ctx.deps.thinking_animation.start()
|
|
40
|
-
return f"User did not confirm mock data
|
|
42
|
+
return f"User did not confirm mock data for datasource '{datasource_name}' in Tinybird {cloud_or_local} and gave the following feedback: {feedback}"
|
|
41
43
|
|
|
42
|
-
|
|
43
|
-
ctx.deps.thinking_animation.start()
|
|
44
|
-
return "User cancelled mock data generation. Stop mock data generation."
|
|
45
|
-
|
|
46
|
-
click.echo(FeedbackManager.highlight(message=f"\n» Generating mock data for {datasource_name}..."))
|
|
44
|
+
click.echo(FeedbackManager.highlight(message=f"» Generating mock data for {datasource_name}..."))
|
|
47
45
|
data = ctx.deps.mock_data(datasource_name=datasource_name, data_format=data_format, rows=rows, context=context)
|
|
48
46
|
fixture_path = persist_fixture(datasource_name, data, ctx.deps.folder, format=data_format)
|
|
49
|
-
|
|
47
|
+
if cloud:
|
|
48
|
+
ctx.deps.append_data_cloud(datasource_name=datasource_name, path=str(fixture_path))
|
|
49
|
+
else:
|
|
50
|
+
ctx.deps.append_data_local(datasource_name=datasource_name, path=str(fixture_path))
|
|
50
51
|
click.echo(FeedbackManager.success(message=f"✓ Data generated for {datasource_name}"))
|
|
51
52
|
ctx.deps.thinking_animation.start()
|
|
52
|
-
return f"Mock data generated successfully for datasource {datasource_name}"
|
|
53
|
+
return f"Mock data generated successfully for datasource '{datasource_name}' in Tinybird {cloud_or_local}"
|
|
54
|
+
except AgentRunCancelled as e:
|
|
55
|
+
raise e
|
|
53
56
|
except Exception as e:
|
|
54
57
|
ctx.deps.thinking_animation.stop()
|
|
55
58
|
error_message = str(e)
|
|
@@ -57,7 +60,7 @@ def mock(
|
|
|
57
60
|
try:
|
|
58
61
|
if "in quarantine" in error_message:
|
|
59
62
|
click.echo(
|
|
60
|
-
FeedbackManager.highlight(message=f"
|
|
63
|
+
FeedbackManager.highlight(message=f"» Looking for errors in {datasource_name}_quarantine...")
|
|
61
64
|
)
|
|
62
65
|
query = f"select * from {datasource_name}_quarantine order by insertion_date desc limit 5 FORMAT CSVWithNames"
|
|
63
66
|
quarantine_data = ctx.deps.execute_query_local(query=query)
|
|
@@ -69,5 +72,8 @@ def mock(
|
|
|
69
72
|
except Exception as quarantine_error:
|
|
70
73
|
error_message = error_message + f"\nError accessing to {datasource_name}_quarantine: {quarantine_error}"
|
|
71
74
|
|
|
75
|
+
if "must be created first with 'mode=create'" in error_message:
|
|
76
|
+
error_message = error_message + "\nBuild the project again."
|
|
77
|
+
|
|
72
78
|
ctx.deps.thinking_animation.start()
|
|
73
|
-
return f"Error generating mock data: {error_message}"
|
|
79
|
+
return f"Error generating mock data for datasource '{datasource_name}' in Tinybird {cloud_or_local}: {error_message}"
|
|
@@ -13,25 +13,17 @@ def plan(ctx: RunContext[TinybirdAgentContext], plan: str) -> str:
|
|
|
13
13
|
Returns:
|
|
14
14
|
str: If the plan was implemented or not.
|
|
15
15
|
"""
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
feedback = show_input(ctx.deps.workspace_name)
|
|
26
|
-
ctx.deps.thinking_animation.start()
|
|
27
|
-
return f"User did not confirm the proposed plan and gave the following feedback: {feedback}"
|
|
28
|
-
|
|
16
|
+
ctx.deps.thinking_animation.stop()
|
|
17
|
+
plan = plan.strip()
|
|
18
|
+
click.echo(plan)
|
|
19
|
+
confirmation = show_confirmation(
|
|
20
|
+
title="Do you want to continue with the plan?", skip_confirmation=ctx.deps.dangerously_skip_permissions
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
if confirmation == "review":
|
|
24
|
+
feedback = show_input(ctx.deps.workspace_name)
|
|
29
25
|
ctx.deps.thinking_animation.start()
|
|
26
|
+
return f"User did not confirm the proposed plan and gave the following feedback: {feedback}"
|
|
30
27
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
return "User confirmed the plan. Implementing..."
|
|
35
|
-
|
|
36
|
-
except Exception as e:
|
|
37
|
-
return f"Error implementing the plan: {e}"
|
|
28
|
+
ctx.deps.thinking_animation.start()
|
|
29
|
+
return "User confirmed the plan. Implementing..."
|
|
@@ -13,7 +13,7 @@ def request_endpoint(
|
|
|
13
13
|
ctx: RunContext[TinybirdAgentContext],
|
|
14
14
|
endpoint_name: str,
|
|
15
15
|
params: Optional[dict[str, str]] = None,
|
|
16
|
-
cloud: bool =
|
|
16
|
+
cloud: bool = False,
|
|
17
17
|
):
|
|
18
18
|
"""Request an endpoint:
|
|
19
19
|
|
|
@@ -28,10 +28,10 @@ def request_endpoint(
|
|
|
28
28
|
try:
|
|
29
29
|
cloud_or_local = "cloud" if cloud else "local"
|
|
30
30
|
ctx.deps.thinking_animation.stop()
|
|
31
|
-
|
|
31
|
+
with_params = f" with params {params}" if params else ""
|
|
32
32
|
click.echo(
|
|
33
33
|
FeedbackManager.highlight(
|
|
34
|
-
message=f"» Calling endpoint {endpoint_name} in {cloud_or_local} environment
|
|
34
|
+
message=f"» Calling endpoint {endpoint_name} in {cloud_or_local} environment{with_params}"
|
|
35
35
|
)
|
|
36
36
|
)
|
|
37
37
|
|
|
@@ -59,7 +59,8 @@ def request_endpoint(
|
|
|
59
59
|
ctx.deps.thinking_animation.stop()
|
|
60
60
|
click.echo(FeedbackManager.error(message=error))
|
|
61
61
|
ctx.deps.thinking_animation.start()
|
|
62
|
-
|
|
62
|
+
not_found_errors = ["not found", "does not exist"]
|
|
63
|
+
if any(not_found_error in error.lower() for not_found_error in not_found_errors) and cloud:
|
|
63
64
|
return f"Error executing query: {error}. Please run the query against Tinybird local instead of cloud."
|
|
64
65
|
else:
|
|
65
66
|
return f"Error executing query: {error}. Please try again."
|
|
@@ -39,7 +39,8 @@ class TinybirdAgentContext(BaseModel):
|
|
|
39
39
|
deploy_project: Callable[[], None]
|
|
40
40
|
deploy_check_project: Callable[[], None]
|
|
41
41
|
mock_data: Callable[..., list[dict[str, Any]]]
|
|
42
|
-
|
|
42
|
+
append_data_local: Callable[..., None]
|
|
43
|
+
append_data_cloud: Callable[..., None]
|
|
43
44
|
analyze_fixture: Callable[..., dict[str, Any]]
|
|
44
45
|
execute_query_cloud: Callable[..., dict[str, Any]]
|
|
45
46
|
execute_query_local: Callable[..., dict[str, Any]]
|
|
@@ -55,6 +56,8 @@ class TinybirdAgentContext(BaseModel):
|
|
|
55
56
|
token: str
|
|
56
57
|
user_token: str
|
|
57
58
|
host: str
|
|
59
|
+
local_host: str
|
|
60
|
+
local_token: str
|
|
58
61
|
|
|
59
62
|
|
|
60
63
|
default_style = PromptStyle.from_dict(
|
|
@@ -141,7 +144,7 @@ class InquirerControl(FormattedTextControl):
|
|
|
141
144
|
tokens.append(
|
|
142
145
|
(
|
|
143
146
|
"",
|
|
144
|
-
"
|
|
147
|
+
"\u276f " if selected else " ",
|
|
145
148
|
)
|
|
146
149
|
)
|
|
147
150
|
if selected:
|
|
@@ -196,7 +199,7 @@ def prompt_question(message, **kwargs):
|
|
|
196
199
|
def get_prompt_tokens():
|
|
197
200
|
tokens = []
|
|
198
201
|
|
|
199
|
-
tokens.append(("class:question", "
|
|
202
|
+
tokens.append(("class:question", "%s " % message))
|
|
200
203
|
if ic.answered:
|
|
201
204
|
tokens.append(("class:answer", " " + ic.get_selection()[0]))
|
|
202
205
|
else:
|
|
@@ -349,7 +352,7 @@ def show_options(options: List[str], title: str = "Select an option") -> Optiona
|
|
|
349
352
|
return result["option"]
|
|
350
353
|
|
|
351
354
|
|
|
352
|
-
ConfirmationResult = Literal["yes", "review"
|
|
355
|
+
ConfirmationResult = Literal["yes", "review"]
|
|
353
356
|
|
|
354
357
|
|
|
355
358
|
def load_existing_resources(folder: str) -> str:
|
|
@@ -700,6 +703,12 @@ def show_input(workspace_name: str) -> str:
|
|
|
700
703
|
)
|
|
701
704
|
|
|
702
705
|
|
|
706
|
+
class AgentRunCancelled(Exception):
|
|
707
|
+
"""Exception raised when user cancels an operation"""
|
|
708
|
+
|
|
709
|
+
pass
|
|
710
|
+
|
|
711
|
+
|
|
703
712
|
def show_confirmation(title: str, skip_confirmation: bool = False) -> ConfirmationResult:
|
|
704
713
|
if skip_confirmation:
|
|
705
714
|
return "yes"
|
|
@@ -711,11 +720,11 @@ def show_confirmation(title: str, skip_confirmation: bool = False) -> Confirmati
|
|
|
711
720
|
)
|
|
712
721
|
|
|
713
722
|
if result is None: # Cancelled
|
|
714
|
-
|
|
723
|
+
raise AgentRunCancelled(f"User cancelled the operation: {title}")
|
|
715
724
|
|
|
716
725
|
if result.startswith("Yes"):
|
|
717
726
|
return "yes"
|
|
718
727
|
elif result.startswith("No"):
|
|
719
728
|
return "review"
|
|
720
729
|
|
|
721
|
-
|
|
730
|
+
raise AgentRunCancelled(f"User cancelled the operation: {title}")
|
tinybird/tb/modules/cli.py
CHANGED
|
@@ -87,8 +87,10 @@ agent_mode_flag = os.environ.get("TB_AGENT_MODE", "false") == "true"
|
|
|
87
87
|
hidden=True,
|
|
88
88
|
)
|
|
89
89
|
@click.option(
|
|
90
|
-
"--
|
|
91
|
-
|
|
90
|
+
"--prompt",
|
|
91
|
+
"-p",
|
|
92
|
+
help="Run agent in prompt mode with the provided input and exit.",
|
|
93
|
+
hidden=True,
|
|
92
94
|
)
|
|
93
95
|
@click.version_option(version=VERSION)
|
|
94
96
|
@click.pass_context
|
|
@@ -105,7 +107,7 @@ def cli(
|
|
|
105
107
|
output: str,
|
|
106
108
|
max_depth: int,
|
|
107
109
|
dangerously_skip_permissions: bool,
|
|
108
|
-
|
|
110
|
+
prompt: Optional[str] = None,
|
|
109
111
|
) -> None:
|
|
110
112
|
"""
|
|
111
113
|
Use `OBFUSCATE_REGEX_PATTERN` and `OBFUSCATE_PATTERN_SEPARATOR` environment variables to define a regex pattern and a separator (in case of a single string with multiple regex) to obfuscate secrets in the CLI output.
|
|
@@ -166,7 +168,7 @@ def cli(
|
|
|
166
168
|
user_token = os.environ.get("TB_USER_TOKEN", "")
|
|
167
169
|
|
|
168
170
|
config = get_config(host, token, user_token=user_token, config_file=config_temp._path)
|
|
169
|
-
client = _get_tb_client(config.get("token",
|
|
171
|
+
client = _get_tb_client(config.get("token", ""), config["host"])
|
|
170
172
|
|
|
171
173
|
# Calculate project folder path properly
|
|
172
174
|
tinyb_dir = os.path.dirname(config_temp._path) # Directory containing .tinyb file
|
|
@@ -207,10 +209,10 @@ def cli(
|
|
|
207
209
|
ctx.ensure_object(dict)["output"] = output
|
|
208
210
|
|
|
209
211
|
is_agent_mode = agent_mode_flag and ctx.invoked_subcommand is None
|
|
210
|
-
|
|
212
|
+
is_prompt_mode = prompt is not None
|
|
211
213
|
|
|
212
|
-
if is_agent_mode or
|
|
213
|
-
run_agent(config, project, dangerously_skip_permissions, prompt=
|
|
214
|
+
if is_agent_mode or is_prompt_mode:
|
|
215
|
+
run_agent(config, project, dangerously_skip_permissions, prompt=prompt)
|
|
214
216
|
|
|
215
217
|
|
|
216
218
|
@cli.command(hidden=True)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: tinybird
|
|
3
|
-
Version: 0.0.1.
|
|
3
|
+
Version: 0.0.1.dev258
|
|
4
4
|
Summary: Tinybird Command Line Tool
|
|
5
5
|
Home-page: https://www.tinybird.co/docs/forward/commands
|
|
6
6
|
Author: Tinybird
|
|
@@ -21,7 +21,7 @@ Requires-Dist: GitPython~=3.1.32
|
|
|
21
21
|
Requires-Dist: humanfriendly~=8.2
|
|
22
22
|
Requires-Dist: prompt_toolkit==3.0.48
|
|
23
23
|
Requires-Dist: pydantic~=2.11.7
|
|
24
|
-
Requires-Dist: pydantic-ai-slim[anthropic]~=0.
|
|
24
|
+
Requires-Dist: pydantic-ai-slim[anthropic]~=0.4.2
|
|
25
25
|
Requires-Dist: pyperclip==1.8.2
|
|
26
26
|
Requires-Dist: pyyaml<6.1,>=6.0
|
|
27
27
|
Requires-Dist: requests<3,>=2.28.1
|
|
@@ -12,12 +12,12 @@ tinybird/syncasync.py,sha256=IPnOx6lMbf9SNddN1eBtssg8vCLHMt76SuZ6YNYm-Yk,27761
|
|
|
12
12
|
tinybird/tornado_template.py,sha256=jjNVDMnkYFWXflmT8KU_Ssbo5vR8KQq3EJMk5vYgXRw,41959
|
|
13
13
|
tinybird/ch_utils/constants.py,sha256=fPgZtwbr1ymxaW7uqVWHKmAbt7uGj3SxCCS3xsEMJqA,4151
|
|
14
14
|
tinybird/ch_utils/engine.py,sha256=4X1B-iuhdW_mxKnX_m3iCsxgP9RPVgR75g7yH1vsJ6A,40851
|
|
15
|
-
tinybird/datafile/common.py,sha256=
|
|
15
|
+
tinybird/datafile/common.py,sha256=naXznRSAceD0T05YNj0Fdk7k-6WfKA6dz2GT0tiHj9k,98505
|
|
16
16
|
tinybird/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1wnI,556
|
|
17
17
|
tinybird/datafile/parse_connection.py,sha256=tRyn2Rpr1TeWet5BXmMoQgaotbGdYep1qiTak_OqC5E,1825
|
|
18
18
|
tinybird/datafile/parse_datasource.py,sha256=ssW8QeFSgglVFi3sDZj_HgkJiTJ2069v2JgqnH3CkDE,1825
|
|
19
19
|
tinybird/datafile/parse_pipe.py,sha256=xf4m0Tw44QWJzHzAm7Z7FwUoUUtr7noMYjU1NiWnX0k,3880
|
|
20
|
-
tinybird/tb/__cli__.py,sha256=
|
|
20
|
+
tinybird/tb/__cli__.py,sha256=4aRXg7mNecs7o1hpJl12I94ag62DgZr1v_Wu7L0yO0s,247
|
|
21
21
|
tinybird/tb/check_pypi.py,sha256=Gp0HkHHDFMSDL6nxKlOY51z7z1Uv-2LRexNTZSHHGmM,552
|
|
22
22
|
tinybird/tb/cli.py,sha256=FdDFEIayjmsZEVsVSSvRiVYn_FHOVg_zWQzchnzfWho,1008
|
|
23
23
|
tinybird/tb/client.py,sha256=pJbdkWMXGAqKseNAvdsRRnl_c7I-DCMB0dWCQnG82nU,54146
|
|
@@ -25,7 +25,7 @@ tinybird/tb/config.py,sha256=mhMTGnMB5KcxGoh3dewIr2Jjsa6pHE183gCPAQWyp6o,3973
|
|
|
25
25
|
tinybird/tb/modules/build.py,sha256=efD-vamK1NPaDo9R86Hn8be2DYoW0Hh5bZiH7knK5dk,7790
|
|
26
26
|
tinybird/tb/modules/build_common.py,sha256=rWhemU8bk0ZE2eiwZDaTmV9cPabDGGlyc2WnRxfhT0M,12859
|
|
27
27
|
tinybird/tb/modules/cicd.py,sha256=0KLKccha9IP749QvlXBmzdWv1On3mFwMY4DUcJlBxiE,7326
|
|
28
|
-
tinybird/tb/modules/cli.py,sha256=
|
|
28
|
+
tinybird/tb/modules/cli.py,sha256=yLRYSk0t2WuyzBclb6HLEXHdRN8ktvypemWiTy5VmDc,16809
|
|
29
29
|
tinybird/tb/modules/common.py,sha256=tj6DR2yOqMMQ0PILwFGXmMogxdrbQCgj36HdSM611rs,82657
|
|
30
30
|
tinybird/tb/modules/config.py,sha256=gK7rgaWTDd4ZKCrNEg_Uemr26EQjqWt6TjyQKujxOws,11462
|
|
31
31
|
tinybird/tb/modules/connection.py,sha256=-MY56NUAai6EMC4-wpi7bT0_nz_SA8QzTmHkV7HB1IQ,17810
|
|
@@ -68,29 +68,29 @@ tinybird/tb/modules/watch.py,sha256=No0bK1M1_3CYuMaIgylxf7vYFJ72lTJe3brz6xQ-mJo,
|
|
|
68
68
|
tinybird/tb/modules/workspace.py,sha256=Q_8HcxMsNg8QG9aBlwcWS2umrDP5IkTIHqqz3sfmGuc,11341
|
|
69
69
|
tinybird/tb/modules/workspace_members.py,sha256=5JdkJgfuEwbq-t6vxkBhYwgsiTDxF790wsa6Xfif9nk,8608
|
|
70
70
|
tinybird/tb/modules/agent/__init__.py,sha256=i3oe3vDIWWPaicdCM0zs7D7BJ1W0k7th93ooskHAV00,54
|
|
71
|
-
tinybird/tb/modules/agent/agent.py,sha256=
|
|
71
|
+
tinybird/tb/modules/agent/agent.py,sha256=Hveg9ty1w2Xa2Tr3rBWLRbEUU6C5KiLHG7anrU3cv_k,22874
|
|
72
72
|
tinybird/tb/modules/agent/animations.py,sha256=4WOC5_2BracttmMCrV0H91tXfWcUzQHBUaIJc5FA7tE,3490
|
|
73
|
-
tinybird/tb/modules/agent/banner.py,sha256=
|
|
73
|
+
tinybird/tb/modules/agent/banner.py,sha256=7f97PeCPW-oW9mReQn3D0by8mnDhoc0VbfebEPRPI7c,3070
|
|
74
74
|
tinybird/tb/modules/agent/memory.py,sha256=O6Kumn9AyKxcTkhI45yjAUZ3ZIAibLOcNWoiEuLYeqY,3245
|
|
75
75
|
tinybird/tb/modules/agent/models.py,sha256=LW1D27gjcd_jwFmghEzteCgToDfodX2B6B5S8BYbysw,735
|
|
76
|
-
tinybird/tb/modules/agent/prompts.py,sha256=
|
|
77
|
-
tinybird/tb/modules/agent/utils.py,sha256=
|
|
76
|
+
tinybird/tb/modules/agent/prompts.py,sha256=ee0EGMIhcxDF2-0uAtI2ApsDk1AM_0vLTx3LZfjX760,26122
|
|
77
|
+
tinybird/tb/modules/agent/utils.py,sha256=YeTDaPBdQ5c1oXpwSy5GAeTc5-4WP8T1VEkt5f_FLUY,26844
|
|
78
78
|
tinybird/tb/modules/agent/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
-
tinybird/tb/modules/agent/tools/analyze.py,sha256=
|
|
80
|
-
tinybird/tb/modules/agent/tools/append.py,sha256=
|
|
81
|
-
tinybird/tb/modules/agent/tools/build.py,sha256=
|
|
82
|
-
tinybird/tb/modules/agent/tools/create_datafile.py,sha256=
|
|
83
|
-
tinybird/tb/modules/agent/tools/deploy.py,sha256=
|
|
84
|
-
tinybird/tb/modules/agent/tools/deploy_check.py,sha256=
|
|
85
|
-
tinybird/tb/modules/agent/tools/diff_resource.py,sha256=
|
|
86
|
-
tinybird/tb/modules/agent/tools/execute_query.py,sha256=
|
|
79
|
+
tinybird/tb/modules/agent/tools/analyze.py,sha256=fTKjMCq8ckvvqq8WqpE2aE_gO0XBM-eFPt75WTFC3ik,3565
|
|
80
|
+
tinybird/tb/modules/agent/tools/append.py,sha256=b8nCO788MAk1ahITdNrrzMdUDhj-Y6KBwOCj4UmCQxg,5606
|
|
81
|
+
tinybird/tb/modules/agent/tools/build.py,sha256=iSsdq42jpP8PC4SOUOLHYzuDrmqU3MDBYwhrT44tBFk,825
|
|
82
|
+
tinybird/tb/modules/agent/tools/create_datafile.py,sha256=twsURhfIhQ5sjTwvsxR0rsERjfIcYxwDZpVNWG6MBPI,4423
|
|
83
|
+
tinybird/tb/modules/agent/tools/deploy.py,sha256=2hKj6LMYiDea6ventsBjE6ArECGIryTdo3X-LYo5oZI,1248
|
|
84
|
+
tinybird/tb/modules/agent/tools/deploy_check.py,sha256=2Wr9hQfKPlhqhumOv5TNl_xFctvdq_DHZ2dI2h_LggY,1048
|
|
85
|
+
tinybird/tb/modules/agent/tools/diff_resource.py,sha256=_9xHcDzCTKk_E1wKQbuktVqV6U9sA0kqYaBxWvtliX0,2613
|
|
86
|
+
tinybird/tb/modules/agent/tools/execute_query.py,sha256=h8be9_lhyMy7UZoCWrExigP-cbq3lLnlLHD9SzDGBCM,2703
|
|
87
87
|
tinybird/tb/modules/agent/tools/explore.py,sha256=ihALc_kBcsjrKT3hZyicqyIowB0g_K3AtNNi-5uz9-8,412
|
|
88
|
-
tinybird/tb/modules/agent/tools/get_endpoint_stats.py,sha256=
|
|
89
|
-
tinybird/tb/modules/agent/tools/get_openapi_definition.py,sha256=
|
|
90
|
-
tinybird/tb/modules/agent/tools/mock.py,sha256=
|
|
91
|
-
tinybird/tb/modules/agent/tools/plan.py,sha256=
|
|
88
|
+
tinybird/tb/modules/agent/tools/get_endpoint_stats.py,sha256=LiEK6ToyPDW2aI8ijclzuwdYAcFmwH-TyjqdFEzQWAc,1689
|
|
89
|
+
tinybird/tb/modules/agent/tools/get_openapi_definition.py,sha256=mjIVVXtgvTs5LzOR8Bp4jB1XhLVMysHrHXawkErFdt8,2282
|
|
90
|
+
tinybird/tb/modules/agent/tools/mock.py,sha256=4JJ_45uWkbDhTGeKpwDv8L07ewsbF8u7qSTELtbBOQU,3913
|
|
91
|
+
tinybird/tb/modules/agent/tools/plan.py,sha256=2KHLNkr2f1RfkbAR4mCVsv94LGosXd8-ky7v6BB1OtQ,985
|
|
92
92
|
tinybird/tb/modules/agent/tools/preview_datafile.py,sha256=Gbao_FxhXstnUnngVQxztpizjugyfx1rOXTkw7Yabls,858
|
|
93
|
-
tinybird/tb/modules/agent/tools/request_endpoint.py,sha256=
|
|
93
|
+
tinybird/tb/modules/agent/tools/request_endpoint.py,sha256=xNYIEFI9sfq3SjevYqJaHH1EP6uEX5HHrbKS6qo3Imo,2852
|
|
94
94
|
tinybird/tb/modules/datafile/build.py,sha256=NFKBrusFLU0WJNCXePAFWiEDuTaXpwc0lHlOQWEJ43s,51117
|
|
95
95
|
tinybird/tb/modules/datafile/build_common.py,sha256=2yNdxe49IMA9wNvl25NemY2Iaz8L66snjOdT64dm1is,4511
|
|
96
96
|
tinybird/tb/modules/datafile/build_datasource.py,sha256=Ra8pVQBDafbFRUKlhpgohhTsRyp_ADKZJVG8Gd69idY,17227
|
|
@@ -111,8 +111,8 @@ tinybird/tb_cli_modules/config.py,sha256=IsgdtFRnUrkY8-Zo32lmk6O7u3bHie1QCxLwgp4
|
|
|
111
111
|
tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
|
|
112
112
|
tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
113
113
|
tinybird/tb_cli_modules/telemetry.py,sha256=Hh2Io8ZPROSunbOLuMvuIFU4TqwWPmQTqal4WS09K1A,10449
|
|
114
|
-
tinybird-0.0.1.
|
|
115
|
-
tinybird-0.0.1.
|
|
116
|
-
tinybird-0.0.1.
|
|
117
|
-
tinybird-0.0.1.
|
|
118
|
-
tinybird-0.0.1.
|
|
114
|
+
tinybird-0.0.1.dev258.dist-info/METADATA,sha256=nUKt8chAClK1BM1cJFNEyNYZW8YM-RpZ0hpQ2q-aezY,1733
|
|
115
|
+
tinybird-0.0.1.dev258.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
116
|
+
tinybird-0.0.1.dev258.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
|
|
117
|
+
tinybird-0.0.1.dev258.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
|
|
118
|
+
tinybird-0.0.1.dev258.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|