tinybird 0.0.1.dev257__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/tb/__cli__.py +2 -2
- tinybird/tb/modules/agent/agent.py +17 -3
- tinybird/tb/modules/agent/banner.py +1 -0
- tinybird/tb/modules/agent/tools/analyze.py +3 -1
- tinybird/tb/modules/agent/tools/append.py +5 -9
- tinybird/tb/modules/agent/tools/build.py +2 -1
- tinybird/tb/modules/agent/tools/create_datafile.py +3 -5
- tinybird/tb/modules/agent/tools/deploy.py +2 -5
- tinybird/tb/modules/agent/tools/deploy_check.py +2 -5
- tinybird/tb/modules/agent/tools/mock.py +3 -5
- tinybird/tb/modules/agent/tools/plan.py +12 -20
- tinybird/tb/modules/agent/utils.py +9 -3
- {tinybird-0.0.1.dev257.dist-info → tinybird-0.0.1.dev258.dist-info}/METADATA +1 -1
- {tinybird-0.0.1.dev257.dist-info → tinybird-0.0.1.dev258.dist-info}/RECORD +17 -17
- {tinybird-0.0.1.dev257.dist-info → tinybird-0.0.1.dev258.dist-info}/WHEEL +0 -0
- {tinybird-0.0.1.dev257.dist-info → tinybird-0.0.1.dev258.dist-info}/entry_points.txt +0 -0
- {tinybird-0.0.1.dev257.dist-info → tinybird-0.0.1.dev258.dist-info}/top_level.txt +0 -0
tinybird/tb/__cli__.py
CHANGED
|
@@ -4,5 +4,5 @@ __description__ = 'Tinybird Command Line Tool'
|
|
|
4
4
|
__url__ = 'https://www.tinybird.co/docs/forward/commands'
|
|
5
5
|
__author__ = 'Tinybird'
|
|
6
6
|
__author_email__ = 'support@tinybird.co'
|
|
7
|
-
__version__ = '0.0.1.
|
|
8
|
-
__revision__ = '
|
|
7
|
+
__version__ = '0.0.1.dev258'
|
|
8
|
+
__revision__ = 'ca57848'
|
|
@@ -10,7 +10,7 @@ import click
|
|
|
10
10
|
import humanfriendly
|
|
11
11
|
from pydantic_ai import Agent, RunContext, Tool
|
|
12
12
|
from pydantic_ai.agent import AgentRunResult
|
|
13
|
-
from pydantic_ai.messages import ModelMessage
|
|
13
|
+
from pydantic_ai.messages import ModelMessage, ModelRequest, UserPromptPart
|
|
14
14
|
|
|
15
15
|
from tinybird.tb.client import TinyB
|
|
16
16
|
from tinybird.tb.modules.agent.animations import ThinkingAnimation
|
|
@@ -32,7 +32,7 @@ from tinybird.tb.modules.agent.tools.mock import mock
|
|
|
32
32
|
from tinybird.tb.modules.agent.tools.plan import plan
|
|
33
33
|
from tinybird.tb.modules.agent.tools.preview_datafile import preview_datafile
|
|
34
34
|
from tinybird.tb.modules.agent.tools.request_endpoint import request_endpoint
|
|
35
|
-
from tinybird.tb.modules.agent.utils import TinybirdAgentContext, show_input
|
|
35
|
+
from tinybird.tb.modules.agent.utils import AgentRunCancelled, TinybirdAgentContext, show_input
|
|
36
36
|
from tinybird.tb.modules.build_common import process as build_process
|
|
37
37
|
from tinybird.tb.modules.common import _analyze, _get_tb_client, echo_safe_humanfriendly_tables_format_pretty_table
|
|
38
38
|
from tinybird.tb.modules.config import CLIConfig
|
|
@@ -119,6 +119,9 @@ class TinybirdAgent:
|
|
|
119
119
|
|
|
120
120
|
self.thinking_animation = ThinkingAnimation()
|
|
121
121
|
|
|
122
|
+
def add_message(self, message: ModelMessage) -> None:
|
|
123
|
+
self.messages.append(message)
|
|
124
|
+
|
|
122
125
|
def _keep_recent_messages(self, messages: list[ModelMessage]) -> list[ModelMessage]:
|
|
123
126
|
"""Keep only the last 5 messages to manage token usage."""
|
|
124
127
|
return messages[-5:] if len(messages) > 5 else messages
|
|
@@ -320,7 +323,18 @@ def run_agent(
|
|
|
320
323
|
continue
|
|
321
324
|
else:
|
|
322
325
|
asyncio.run(agent.run_iter(user_input, config))
|
|
323
|
-
|
|
326
|
+
except AgentRunCancelled:
|
|
327
|
+
click.echo(FeedbackManager.info(message="User cancelled the operation"))
|
|
328
|
+
agent.add_message(
|
|
329
|
+
ModelRequest(
|
|
330
|
+
parts=[
|
|
331
|
+
UserPromptPart(
|
|
332
|
+
content="User cancelled the operation",
|
|
333
|
+
)
|
|
334
|
+
]
|
|
335
|
+
)
|
|
336
|
+
)
|
|
337
|
+
continue
|
|
324
338
|
except KeyboardInterrupt:
|
|
325
339
|
click.echo(FeedbackManager.info(message="Goodbye!"))
|
|
326
340
|
break
|
|
@@ -5,7 +5,7 @@ from urllib.parse import urlparse
|
|
|
5
5
|
import click
|
|
6
6
|
from pydantic_ai import RunContext
|
|
7
7
|
|
|
8
|
-
from tinybird.tb.modules.agent.utils import TinybirdAgentContext
|
|
8
|
+
from tinybird.tb.modules.agent.utils import AgentRunCancelled, TinybirdAgentContext
|
|
9
9
|
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
10
10
|
|
|
11
11
|
|
|
@@ -37,6 +37,8 @@ def analyze_file(ctx: RunContext[TinybirdAgentContext], fixture_pathname: str):
|
|
|
37
37
|
columns = response["analysis"]["columns"]
|
|
38
38
|
|
|
39
39
|
return f"#Result of analysis of {fixture_pathname}:\n##Columns:\n{json.dumps(columns)}\n##Data sample:\n{json.dumps(data)}"
|
|
40
|
+
except AgentRunCancelled as e:
|
|
41
|
+
raise e
|
|
40
42
|
except Exception as e:
|
|
41
43
|
ctx.deps.thinking_animation.stop()
|
|
42
44
|
click.echo(FeedbackManager.error(message=f"Error analyzing {fixture_pathname}: {e}"))
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import click
|
|
2
2
|
from pydantic_ai import RunContext
|
|
3
3
|
|
|
4
|
-
from tinybird.tb.modules.agent.utils import TinybirdAgentContext, show_confirmation, show_input
|
|
4
|
+
from tinybird.tb.modules.agent.utils import AgentRunCancelled, TinybirdAgentContext, show_confirmation, show_input
|
|
5
5
|
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
6
6
|
|
|
7
7
|
|
|
@@ -31,10 +31,6 @@ def append_file(
|
|
|
31
31
|
ctx.deps.thinking_animation.start()
|
|
32
32
|
return f"User did not confirm appending {fixture_pathname} fixture in Tinybird {cloud_or_local} and gave the following feedback: {feedback}"
|
|
33
33
|
|
|
34
|
-
if confirmation == "cancel":
|
|
35
|
-
ctx.deps.thinking_animation.start()
|
|
36
|
-
return f"User rejected appending {fixture_pathname} fixture in Tinybird {cloud_or_local}. Skip this step"
|
|
37
|
-
|
|
38
34
|
ctx.deps.thinking_animation.stop()
|
|
39
35
|
click.echo(FeedbackManager.highlight(message=f"» Appending {fixture_pathname} to {datasource_name}..."))
|
|
40
36
|
if cloud:
|
|
@@ -44,6 +40,8 @@ def append_file(
|
|
|
44
40
|
click.echo(FeedbackManager.success(message=f"✓ Data appended to {datasource_name}"))
|
|
45
41
|
ctx.deps.thinking_animation.start()
|
|
46
42
|
return f"Data appended to {datasource_name} in Tinybird {cloud_or_local}"
|
|
43
|
+
except AgentRunCancelled as e:
|
|
44
|
+
raise e
|
|
47
45
|
except Exception as e:
|
|
48
46
|
error_message = str(e)
|
|
49
47
|
ctx.deps.thinking_animation.stop()
|
|
@@ -79,10 +77,6 @@ def append_url(
|
|
|
79
77
|
ctx.deps.thinking_animation.start()
|
|
80
78
|
return f"User did not confirm appending URL {fixture_url} in Tinybird {cloud_or_local} and gave the following feedback: {feedback}"
|
|
81
79
|
|
|
82
|
-
if confirmation == "cancel":
|
|
83
|
-
ctx.deps.thinking_animation.start()
|
|
84
|
-
return f"User rejected appending URL {fixture_url} in Tinybird {cloud_or_local}. Skip this step"
|
|
85
|
-
|
|
86
80
|
ctx.deps.thinking_animation.stop()
|
|
87
81
|
click.echo(FeedbackManager.highlight(message=f"» Appending {fixture_url} to {datasource_name}..."))
|
|
88
82
|
if cloud:
|
|
@@ -92,6 +86,8 @@ def append_url(
|
|
|
92
86
|
click.echo(FeedbackManager.success(message=f"✓ Data appended to {datasource_name}"))
|
|
93
87
|
ctx.deps.thinking_animation.start()
|
|
94
88
|
return f"Data appended to {datasource_name} in Tinybird {cloud_or_local}"
|
|
89
|
+
except AgentRunCancelled as e:
|
|
90
|
+
raise e
|
|
95
91
|
except Exception as e:
|
|
96
92
|
error_message = str(e)
|
|
97
93
|
ctx.deps.thinking_animation.stop()
|
|
@@ -2,6 +2,7 @@ import click
|
|
|
2
2
|
from pydantic_ai import RunContext
|
|
3
3
|
|
|
4
4
|
from tinybird.tb.modules.agent.utils import TinybirdAgentContext
|
|
5
|
+
from tinybird.tb.modules.exceptions import CLIBuildException
|
|
5
6
|
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
6
7
|
|
|
7
8
|
|
|
@@ -13,7 +14,7 @@ def build(ctx: RunContext[TinybirdAgentContext]) -> str:
|
|
|
13
14
|
ctx.deps.build_project(test=False, silent=False)
|
|
14
15
|
ctx.deps.thinking_animation.start()
|
|
15
16
|
return "Project built successfully"
|
|
16
|
-
except
|
|
17
|
+
except CLIBuildException as e:
|
|
17
18
|
ctx.deps.thinking_animation.stop()
|
|
18
19
|
click.echo(FeedbackManager.error(message=e))
|
|
19
20
|
ctx.deps.thinking_animation.start()
|
|
@@ -5,6 +5,7 @@ import click
|
|
|
5
5
|
from pydantic_ai import RunContext
|
|
6
6
|
|
|
7
7
|
from tinybird.tb.modules.agent.utils import (
|
|
8
|
+
AgentRunCancelled,
|
|
8
9
|
Datafile,
|
|
9
10
|
TinybirdAgentContext,
|
|
10
11
|
create_terminal_box,
|
|
@@ -46,10 +47,6 @@ def create_datafile(ctx: RunContext[TinybirdAgentContext], resource: Datafile) -
|
|
|
46
47
|
ctx.deps.thinking_animation.start()
|
|
47
48
|
return f"User did not confirm the proposed changes and gave the following feedback: {feedback}"
|
|
48
49
|
|
|
49
|
-
if confirmation == "cancel":
|
|
50
|
-
ctx.deps.thinking_animation.start()
|
|
51
|
-
return f"User cancelled {action} of {resource.pathname}. Stop resource creation."
|
|
52
|
-
|
|
53
50
|
click.echo(FeedbackManager.highlight(message=f"» Building {resource.pathname}..."))
|
|
54
51
|
folder_path = path.parent
|
|
55
52
|
folder_path.mkdir(parents=True, exist_ok=True)
|
|
@@ -60,7 +57,8 @@ def create_datafile(ctx: RunContext[TinybirdAgentContext], resource: Datafile) -
|
|
|
60
57
|
click.echo(FeedbackManager.success(message=f"✓ {resource.pathname} {action_text}"))
|
|
61
58
|
ctx.deps.thinking_animation.start()
|
|
62
59
|
return f"{action_text} {resource.pathname}"
|
|
63
|
-
|
|
60
|
+
except AgentRunCancelled as e:
|
|
61
|
+
raise e
|
|
64
62
|
except CLIBuildException as e:
|
|
65
63
|
ctx.deps.thinking_animation.stop()
|
|
66
64
|
click.echo(FeedbackManager.error(message=e))
|
|
@@ -2,6 +2,7 @@ import click
|
|
|
2
2
|
from pydantic_ai import RunContext
|
|
3
3
|
|
|
4
4
|
from tinybird.tb.modules.agent.utils import TinybirdAgentContext, show_confirmation, show_input
|
|
5
|
+
from tinybird.tb.modules.exceptions import CLIDeploymentException
|
|
5
6
|
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
6
7
|
|
|
7
8
|
|
|
@@ -19,15 +20,11 @@ def deploy(ctx: RunContext[TinybirdAgentContext]) -> str:
|
|
|
19
20
|
ctx.deps.thinking_animation.start()
|
|
20
21
|
return f"User did not confirm deployment and gave the following feedback: {feedback}"
|
|
21
22
|
|
|
22
|
-
if confirmation == "cancel":
|
|
23
|
-
ctx.deps.thinking_animation.start()
|
|
24
|
-
return "User cancelled deployment. Stop deployment."
|
|
25
|
-
|
|
26
23
|
click.echo(FeedbackManager.highlight(message="» Deploying project..."))
|
|
27
24
|
ctx.deps.deploy_project()
|
|
28
25
|
click.echo(FeedbackManager.success(message="✓ Project deployed successfully"))
|
|
29
26
|
ctx.deps.thinking_animation.start()
|
|
30
27
|
return "Project deployed successfully"
|
|
31
|
-
except
|
|
28
|
+
except CLIDeploymentException as e:
|
|
32
29
|
ctx.deps.thinking_animation.start()
|
|
33
30
|
return f"Error depoying project: {e}"
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from pydantic_ai import RunContext
|
|
2
2
|
|
|
3
3
|
from tinybird.tb.modules.agent.utils import TinybirdAgentContext, show_confirmation, show_input
|
|
4
|
+
from tinybird.tb.modules.exceptions import CLIDeploymentException
|
|
4
5
|
|
|
5
6
|
|
|
6
7
|
def deploy_check(ctx: RunContext[TinybirdAgentContext]) -> str:
|
|
@@ -17,13 +18,9 @@ def deploy_check(ctx: RunContext[TinybirdAgentContext]) -> str:
|
|
|
17
18
|
ctx.deps.thinking_animation.start()
|
|
18
19
|
return f"User did not confirm deployment check and gave the following feedback: {feedback}"
|
|
19
20
|
|
|
20
|
-
if confirmation == "cancel":
|
|
21
|
-
ctx.deps.thinking_animation.start()
|
|
22
|
-
return "User cancelled deployment check. Stop deployment check."
|
|
23
|
-
|
|
24
21
|
ctx.deps.deploy_check_project()
|
|
25
22
|
ctx.deps.thinking_animation.start()
|
|
26
23
|
return "Project can be deployed"
|
|
27
|
-
except
|
|
24
|
+
except CLIDeploymentException as e:
|
|
28
25
|
ctx.deps.thinking_animation.start()
|
|
29
26
|
return f"Project cannot be deployed: {e}"
|
|
@@ -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
|
|
|
@@ -41,10 +41,6 @@ def mock(
|
|
|
41
41
|
ctx.deps.thinking_animation.start()
|
|
42
42
|
return f"User did not confirm mock data for datasource '{datasource_name}' in Tinybird {cloud_or_local} and gave the following feedback: {feedback}"
|
|
43
43
|
|
|
44
|
-
if confirmation == "cancel":
|
|
45
|
-
ctx.deps.thinking_animation.start()
|
|
46
|
-
return f"User cancelled mock data for datasource '{datasource_name}' in Tinybird {cloud_or_local}. Stop mock data generation."
|
|
47
|
-
|
|
48
44
|
click.echo(FeedbackManager.highlight(message=f"» Generating mock data for {datasource_name}..."))
|
|
49
45
|
data = ctx.deps.mock_data(datasource_name=datasource_name, data_format=data_format, rows=rows, context=context)
|
|
50
46
|
fixture_path = persist_fixture(datasource_name, data, ctx.deps.folder, format=data_format)
|
|
@@ -55,6 +51,8 @@ def mock(
|
|
|
55
51
|
click.echo(FeedbackManager.success(message=f"✓ Data generated for {datasource_name}"))
|
|
56
52
|
ctx.deps.thinking_animation.start()
|
|
57
53
|
return f"Mock data generated successfully for datasource '{datasource_name}' in Tinybird {cloud_or_local}"
|
|
54
|
+
except AgentRunCancelled as e:
|
|
55
|
+
raise e
|
|
58
56
|
except Exception as e:
|
|
59
57
|
ctx.deps.thinking_animation.stop()
|
|
60
58
|
error_message = str(e)
|
|
@@ -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..."
|
|
@@ -352,7 +352,7 @@ def show_options(options: List[str], title: str = "Select an option") -> Optiona
|
|
|
352
352
|
return result["option"]
|
|
353
353
|
|
|
354
354
|
|
|
355
|
-
ConfirmationResult = Literal["yes", "review"
|
|
355
|
+
ConfirmationResult = Literal["yes", "review"]
|
|
356
356
|
|
|
357
357
|
|
|
358
358
|
def load_existing_resources(folder: str) -> str:
|
|
@@ -703,6 +703,12 @@ def show_input(workspace_name: str) -> str:
|
|
|
703
703
|
)
|
|
704
704
|
|
|
705
705
|
|
|
706
|
+
class AgentRunCancelled(Exception):
|
|
707
|
+
"""Exception raised when user cancels an operation"""
|
|
708
|
+
|
|
709
|
+
pass
|
|
710
|
+
|
|
711
|
+
|
|
706
712
|
def show_confirmation(title: str, skip_confirmation: bool = False) -> ConfirmationResult:
|
|
707
713
|
if skip_confirmation:
|
|
708
714
|
return "yes"
|
|
@@ -714,11 +720,11 @@ def show_confirmation(title: str, skip_confirmation: bool = False) -> Confirmati
|
|
|
714
720
|
)
|
|
715
721
|
|
|
716
722
|
if result is None: # Cancelled
|
|
717
|
-
|
|
723
|
+
raise AgentRunCancelled(f"User cancelled the operation: {title}")
|
|
718
724
|
|
|
719
725
|
if result.startswith("Yes"):
|
|
720
726
|
return "yes"
|
|
721
727
|
elif result.startswith("No"):
|
|
722
728
|
return "review"
|
|
723
729
|
|
|
724
|
-
|
|
730
|
+
raise AgentRunCancelled(f"User cancelled the operation: {title}")
|
|
@@ -17,7 +17,7 @@ tinybird/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1w
|
|
|
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
|
|
@@ -68,27 +68,27 @@ 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
76
|
tinybird/tb/modules/agent/prompts.py,sha256=ee0EGMIhcxDF2-0uAtI2ApsDk1AM_0vLTx3LZfjX760,26122
|
|
77
|
-
tinybird/tb/modules/agent/utils.py,sha256=
|
|
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=
|
|
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
85
|
tinybird/tb/modules/agent/tools/diff_resource.py,sha256=_9xHcDzCTKk_E1wKQbuktVqV6U9sA0kqYaBxWvtliX0,2613
|
|
86
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
88
|
tinybird/tb/modules/agent/tools/get_endpoint_stats.py,sha256=LiEK6ToyPDW2aI8ijclzuwdYAcFmwH-TyjqdFEzQWAc,1689
|
|
89
89
|
tinybird/tb/modules/agent/tools/get_openapi_definition.py,sha256=mjIVVXtgvTs5LzOR8Bp4jB1XhLVMysHrHXawkErFdt8,2282
|
|
90
|
-
tinybird/tb/modules/agent/tools/mock.py,sha256=
|
|
91
|
-
tinybird/tb/modules/agent/tools/plan.py,sha256=
|
|
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
93
|
tinybird/tb/modules/agent/tools/request_endpoint.py,sha256=xNYIEFI9sfq3SjevYqJaHH1EP6uEX5HHrbKS6qo3Imo,2852
|
|
94
94
|
tinybird/tb/modules/datafile/build.py,sha256=NFKBrusFLU0WJNCXePAFWiEDuTaXpwc0lHlOQWEJ43s,51117
|
|
@@ -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
|