tinybird 0.0.1.dev246__py3-none-any.whl → 0.0.1.dev248__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/ch_utils/constants.py +2 -0
- tinybird/prompts.py +2 -0
- tinybird/tb/__cli__.py +2 -2
- tinybird/tb/modules/agent/agent.py +107 -18
- tinybird/tb/modules/agent/models.py +6 -0
- tinybird/tb/modules/agent/prompts.py +57 -29
- tinybird/tb/modules/agent/tools/append.py +55 -0
- tinybird/tb/modules/agent/tools/build.py +1 -0
- tinybird/tb/modules/agent/tools/create_datafile.py +8 -3
- tinybird/tb/modules/agent/tools/deploy.py +1 -1
- tinybird/tb/modules/agent/tools/mock.py +59 -0
- tinybird/tb/modules/agent/tools/plan.py +1 -1
- tinybird/tb/modules/agent/tools/read_fixture_data.py +28 -0
- tinybird/tb/modules/agent/utils.py +296 -3
- tinybird/tb/modules/build.py +4 -1
- tinybird/tb/modules/build_common.py +2 -3
- tinybird/tb/modules/cli.py +9 -1
- tinybird/tb/modules/create.py +1 -1
- tinybird/tb/modules/feedback_manager.py +1 -0
- tinybird/tb/modules/llm.py +1 -1
- tinybird/tb/modules/login.py +6 -301
- tinybird/tb/modules/login_common.py +310 -0
- tinybird/tb/modules/mock.py +3 -69
- tinybird/tb/modules/mock_common.py +71 -0
- tinybird/tb/modules/project.py +9 -0
- {tinybird-0.0.1.dev246.dist-info → tinybird-0.0.1.dev248.dist-info}/METADATA +1 -1
- {tinybird-0.0.1.dev246.dist-info → tinybird-0.0.1.dev248.dist-info}/RECORD +30 -25
- {tinybird-0.0.1.dev246.dist-info → tinybird-0.0.1.dev248.dist-info}/WHEEL +0 -0
- {tinybird-0.0.1.dev246.dist-info → tinybird-0.0.1.dev248.dist-info}/entry_points.txt +0 -0
- {tinybird-0.0.1.dev246.dist-info → tinybird-0.0.1.dev248.dist-info}/top_level.txt +0 -0
tinybird/tb/modules/mock.py
CHANGED
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
import glob
|
|
2
2
|
from pathlib import Path
|
|
3
|
-
from typing import Any, Dict, List
|
|
4
3
|
|
|
5
4
|
import click
|
|
6
5
|
|
|
7
|
-
from tinybird.prompts import mock_prompt
|
|
8
6
|
from tinybird.tb.client import TinyB
|
|
9
7
|
from tinybird.tb.modules.cli import cli
|
|
10
|
-
from tinybird.tb.modules.common import push_data
|
|
11
8
|
from tinybird.tb.modules.config import CLIConfig
|
|
12
|
-
from tinybird.tb.modules.datafile.fixture import persist_fixture
|
|
9
|
+
from tinybird.tb.modules.datafile.fixture import persist_fixture
|
|
13
10
|
from tinybird.tb.modules.exceptions import CLIMockException
|
|
14
11
|
from tinybird.tb.modules.feedback_manager import FeedbackManager
|
|
15
|
-
from tinybird.tb.modules.
|
|
16
|
-
from tinybird.tb.modules.llm_utils import extract_xml
|
|
12
|
+
from tinybird.tb.modules.mock_common import append_mock_data, create_mock_data
|
|
17
13
|
from tinybird.tb.modules.project import Project
|
|
18
14
|
|
|
19
15
|
|
|
@@ -86,71 +82,9 @@ def mock(ctx: click.Context, datasource: str, rows: int, prompt: str, format_: s
|
|
|
86
82
|
fixture_path = persist_fixture(datasource_name, data, folder, format=format_)
|
|
87
83
|
click.echo(FeedbackManager.info(message=f"✓ /fixtures/{datasource_name}.{format_} created"))
|
|
88
84
|
if env == "cloud":
|
|
89
|
-
|
|
85
|
+
append_mock_data(tb_client, datasource_name, str(fixture_path))
|
|
90
86
|
|
|
91
87
|
click.echo(FeedbackManager.success(message=f"✓ Sample data for {datasource_name} created with {rows} rows"))
|
|
92
88
|
|
|
93
89
|
except Exception as e:
|
|
94
90
|
raise CLIMockException(FeedbackManager.error(message=str(e)))
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
def append_fixture(
|
|
98
|
-
tb_client: TinyB,
|
|
99
|
-
datasource_name: str,
|
|
100
|
-
url: str,
|
|
101
|
-
):
|
|
102
|
-
push_data(
|
|
103
|
-
tb_client,
|
|
104
|
-
datasource_name,
|
|
105
|
-
url,
|
|
106
|
-
mode="append",
|
|
107
|
-
concurrency=1,
|
|
108
|
-
silent=True,
|
|
109
|
-
)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
def create_mock_data(
|
|
113
|
-
datasource_name: str,
|
|
114
|
-
datasource_content: str,
|
|
115
|
-
rows: int,
|
|
116
|
-
prompt: str,
|
|
117
|
-
config: CLIConfig,
|
|
118
|
-
ctx_config: Dict[str, Any],
|
|
119
|
-
user_token: str,
|
|
120
|
-
tb_client: TinyB,
|
|
121
|
-
format_: str,
|
|
122
|
-
folder: str,
|
|
123
|
-
) -> List[Dict[str, Any]]:
|
|
124
|
-
user_client = config.get_client(token=ctx_config.get("token"), host=ctx_config.get("host"))
|
|
125
|
-
llm = LLM(user_token=user_token, host=user_client.host)
|
|
126
|
-
prompt = f"<datasource_schema>{datasource_content}</datasource_schema>\n<user_input>{prompt}</user_input>"
|
|
127
|
-
sql = ""
|
|
128
|
-
attempts = 0
|
|
129
|
-
data = []
|
|
130
|
-
error = ""
|
|
131
|
-
sql_path = None
|
|
132
|
-
while True:
|
|
133
|
-
try:
|
|
134
|
-
response = llm.ask(system_prompt=mock_prompt(rows, error), prompt=prompt, feature="tb_mock")
|
|
135
|
-
sql = extract_xml(response, "sql")
|
|
136
|
-
sql_path = persist_fixture_sql(datasource_name, sql, folder)
|
|
137
|
-
sql_format = "JSON" if format_ == "ndjson" else "CSV"
|
|
138
|
-
result = tb_client.query(f"SELECT * FROM ({sql}) LIMIT {rows} FORMAT {sql_format}")
|
|
139
|
-
if sql_format == "JSON":
|
|
140
|
-
data = result.get("data", [])[:rows]
|
|
141
|
-
error_response = result.get("error", None)
|
|
142
|
-
if error_response:
|
|
143
|
-
raise Exception(error_response)
|
|
144
|
-
else:
|
|
145
|
-
data = result
|
|
146
|
-
break
|
|
147
|
-
except Exception as e:
|
|
148
|
-
error = str(e)
|
|
149
|
-
attempts += 1
|
|
150
|
-
if attempts > 5:
|
|
151
|
-
raise Exception(
|
|
152
|
-
f"Failed to generate a valid solution. Check {str(sql_path or '.sql path')} and try again."
|
|
153
|
-
)
|
|
154
|
-
else:
|
|
155
|
-
continue
|
|
156
|
-
return data
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
from typing import Any, Dict, List
|
|
2
|
+
|
|
3
|
+
from tinybird.prompts import mock_prompt
|
|
4
|
+
from tinybird.tb.client import TinyB
|
|
5
|
+
from tinybird.tb.modules.common import push_data
|
|
6
|
+
from tinybird.tb.modules.config import CLIConfig
|
|
7
|
+
from tinybird.tb.modules.datafile.fixture import persist_fixture_sql
|
|
8
|
+
from tinybird.tb.modules.llm import LLM
|
|
9
|
+
from tinybird.tb.modules.llm_utils import extract_xml
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def append_mock_data(
|
|
13
|
+
tb_client: TinyB,
|
|
14
|
+
datasource_name: str,
|
|
15
|
+
url: str,
|
|
16
|
+
):
|
|
17
|
+
push_data(
|
|
18
|
+
tb_client,
|
|
19
|
+
datasource_name,
|
|
20
|
+
url,
|
|
21
|
+
mode="append",
|
|
22
|
+
concurrency=1,
|
|
23
|
+
silent=True,
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def create_mock_data(
|
|
28
|
+
datasource_name: str,
|
|
29
|
+
datasource_content: str,
|
|
30
|
+
rows: int,
|
|
31
|
+
prompt: str,
|
|
32
|
+
config: CLIConfig,
|
|
33
|
+
ctx_config: Dict[str, Any],
|
|
34
|
+
user_token: str,
|
|
35
|
+
tb_client: TinyB,
|
|
36
|
+
format_: str,
|
|
37
|
+
folder: str,
|
|
38
|
+
) -> List[Dict[str, Any]]:
|
|
39
|
+
user_client = config.get_client(token=ctx_config.get("token"), host=ctx_config.get("host"))
|
|
40
|
+
llm = LLM(user_token=user_token, host=user_client.host)
|
|
41
|
+
prompt = f"<datasource_schema>{datasource_content}</datasource_schema>\n<user_input>{prompt}</user_input>"
|
|
42
|
+
sql = ""
|
|
43
|
+
attempts = 0
|
|
44
|
+
data = []
|
|
45
|
+
error = ""
|
|
46
|
+
sql_path = None
|
|
47
|
+
while True:
|
|
48
|
+
try:
|
|
49
|
+
response = llm.ask(system_prompt=mock_prompt(rows, error), prompt=prompt, feature="tb_mock")
|
|
50
|
+
sql = extract_xml(response, "sql")
|
|
51
|
+
sql_path = persist_fixture_sql(datasource_name, sql, folder)
|
|
52
|
+
sql_format = "JSON" if format_ == "ndjson" else "CSV"
|
|
53
|
+
result = tb_client.query(f"SELECT * FROM ({sql}) LIMIT {rows} FORMAT {sql_format}")
|
|
54
|
+
if sql_format == "JSON":
|
|
55
|
+
data = result.get("data", [])[:rows]
|
|
56
|
+
error_response = result.get("error", None)
|
|
57
|
+
if error_response:
|
|
58
|
+
raise Exception(error_response)
|
|
59
|
+
else:
|
|
60
|
+
data = result
|
|
61
|
+
break
|
|
62
|
+
except Exception as e:
|
|
63
|
+
error = str(e)
|
|
64
|
+
attempts += 1
|
|
65
|
+
if attempts > 5:
|
|
66
|
+
raise Exception(
|
|
67
|
+
f"Failed to generate a valid solution. Check {str(sql_path or '.sql path')} and try again."
|
|
68
|
+
)
|
|
69
|
+
else:
|
|
70
|
+
continue
|
|
71
|
+
return data
|
tinybird/tb/modules/project.py
CHANGED
|
@@ -50,6 +50,15 @@ class Project:
|
|
|
50
50
|
project_files.append(project_file)
|
|
51
51
|
return project_files
|
|
52
52
|
|
|
53
|
+
def get_fixture_files(self) -> List[str]:
|
|
54
|
+
fixture_files: List[str] = []
|
|
55
|
+
for extension in ["csv", "ndjson", "parquet"]:
|
|
56
|
+
for fixture_file in self.get_files(extension):
|
|
57
|
+
if self.vendor_path in fixture_file:
|
|
58
|
+
continue
|
|
59
|
+
fixture_files.append(fixture_file)
|
|
60
|
+
return fixture_files
|
|
61
|
+
|
|
53
62
|
def get_resource_path(self, resource_name: str, resource_type: str) -> str:
|
|
54
63
|
full_path = next(
|
|
55
64
|
(p for p in self.get_project_files() if p.endswith("/" + resource_name + f".{resource_type}")), ""
|
|
@@ -3,34 +3,34 @@ tinybird/context.py,sha256=FfqYfrGX_I7PKGTQo93utaKPDNVYWelg4Hsp3evX5wM,1291
|
|
|
3
3
|
tinybird/datatypes.py,sha256=r4WCvspmrXTJHiPjjyOTiZyZl31FO3Ynkwq4LQsYm6E,11059
|
|
4
4
|
tinybird/feedback_manager.py,sha256=1INQFfRfuMCb9lfB8KNf4r6qC2khW568hoHjtk-wshI,69305
|
|
5
5
|
tinybird/git_settings.py,sha256=Sw_8rGmribEFJ4Z_6idrVytxpFYk7ez8ei0qHULzs3E,3934
|
|
6
|
-
tinybird/prompts.py,sha256=
|
|
6
|
+
tinybird/prompts.py,sha256=Dx9pD5kyXdbzkGOcWdULWUg_aN5F1CUPAISm5PyMzOM,45498
|
|
7
7
|
tinybird/sql.py,sha256=BufnOgclQokDyihtuXesOwHBsebN6wRXIxO5wKRkOwE,48299
|
|
8
8
|
tinybird/sql_template.py,sha256=LChDztXUUrNO4Qukv2RMsdjQ-vhmepWiHVoX6yr140E,99983
|
|
9
9
|
tinybird/sql_template_fmt.py,sha256=KUHdj5rYCYm_rKKdXYSJAE9vIyXUQLB0YSZnUXHeBlY,10196
|
|
10
10
|
tinybird/sql_toolset.py,sha256=M2rpLYkgV2W8NnYEYPC1tJdpy4uZHXVF64NBSKLQka4,19549
|
|
11
11
|
tinybird/syncasync.py,sha256=IPnOx6lMbf9SNddN1eBtssg8vCLHMt76SuZ6YNYm-Yk,27761
|
|
12
12
|
tinybird/tornado_template.py,sha256=jjNVDMnkYFWXflmT8KU_Ssbo5vR8KQq3EJMk5vYgXRw,41959
|
|
13
|
-
tinybird/ch_utils/constants.py,sha256=
|
|
13
|
+
tinybird/ch_utils/constants.py,sha256=fPgZtwbr1ymxaW7uqVWHKmAbt7uGj3SxCCS3xsEMJqA,4151
|
|
14
14
|
tinybird/ch_utils/engine.py,sha256=X4tE9OrfaUy6kO9cqVEzyI9cDcmOF3IAssRRzsTsfEQ,40781
|
|
15
15
|
tinybird/datafile/common.py,sha256=J0Oydru3Nh3oCx66EEEHGxm2-r5_NfxvZxiFhBjgAH0,98428
|
|
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=XU7dQJoJUS04mQcPTcpDweJQbUllPEGhxSfkfVitr2Y,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
|
|
24
24
|
tinybird/tb/config.py,sha256=mhMTGnMB5KcxGoh3dewIr2Jjsa6pHE183gCPAQWyp6o,3973
|
|
25
|
-
tinybird/tb/modules/build.py,sha256=
|
|
26
|
-
tinybird/tb/modules/build_common.py,sha256=
|
|
25
|
+
tinybird/tb/modules/build.py,sha256=efD-vamK1NPaDo9R86Hn8be2DYoW0Hh5bZiH7knK5dk,7790
|
|
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=DnNCC1HBe42CNCYIa8FR7YfbUNo9Mbd4ATTVShK8f6Q,16573
|
|
29
29
|
tinybird/tb/modules/common.py,sha256=jTTaDDHrZREt--032XhP6GkbfFwC79YJ5aH1Sl7bmbo,81925
|
|
30
30
|
tinybird/tb/modules/config.py,sha256=gK7rgaWTDd4ZKCrNEg_Uemr26EQjqWt6TjyQKujxOws,11462
|
|
31
31
|
tinybird/tb/modules/connection.py,sha256=-MY56NUAai6EMC4-wpi7bT0_nz_SA8QzTmHkV7HB1IQ,17810
|
|
32
32
|
tinybird/tb/modules/copy.py,sha256=dPZkcIDvxjJrlQUIvToO0vsEEEs4EYumbNV77-BzNoU,4404
|
|
33
|
-
tinybird/tb/modules/create.py,sha256=
|
|
33
|
+
tinybird/tb/modules/create.py,sha256=pJxHXG69c9Z_21s-7VuJ3RZOF_nJU51LEwiAkvI3dZY,23251
|
|
34
34
|
tinybird/tb/modules/datasource.py,sha256=cxq0VVjjidxq-v_JSIIAH7L90XNRctgNKsHRoQ_42OI,41632
|
|
35
35
|
tinybird/tb/modules/deployment.py,sha256=Fw9wSNqmLBGCpKwmZsn3KPsy-6kmQzI8YzSdXWoDb6k,12046
|
|
36
36
|
tinybird/tb/modules/deployment_common.py,sha256=Y0r3g-3d6AcihsVVa0OHer3ow3xHSV1VPskF1eI03KI,17644
|
|
@@ -38,21 +38,23 @@ tinybird/tb/modules/deprecations.py,sha256=rrszC1f_JJeJ8mUxGoCxckQTJFBCR8wREf4XX
|
|
|
38
38
|
tinybird/tb/modules/dev_server.py,sha256=57FCKuWpErwYUYgHspYDkLWEm9F4pbvVOtMrFXX1fVU,10129
|
|
39
39
|
tinybird/tb/modules/endpoint.py,sha256=ksRj6mfDb9Xv63PhTkV_uKSosgysHElqagg3RTt21Do,11958
|
|
40
40
|
tinybird/tb/modules/exceptions.py,sha256=5jK91w1LPmtqIUfDpHe_Op5OxGz8-p1BPgtLREMIni0,5217
|
|
41
|
-
tinybird/tb/modules/feedback_manager.py,sha256=
|
|
41
|
+
tinybird/tb/modules/feedback_manager.py,sha256=xkZjwGOV50-oc0y9h58ei4MZ1mwOMOaN_kUcGrtNH48,78132
|
|
42
42
|
tinybird/tb/modules/info.py,sha256=F5vY4kHS_kyO2uSBKac92HoOb447oDeRlzpwtAHTuKc,6872
|
|
43
43
|
tinybird/tb/modules/infra.py,sha256=JE9oLIyF4bi_JBoe-BgZ5HhKp_lQgSihuSV1KIS02Qs,32709
|
|
44
44
|
tinybird/tb/modules/job.py,sha256=wBsnu8UPTOha2rkLvucgmw4xYv73ubmui3eeSIF68ZM,3107
|
|
45
|
-
tinybird/tb/modules/llm.py,sha256=
|
|
45
|
+
tinybird/tb/modules/llm.py,sha256=CpTq2YAk88E8ENpQA94-mas3UDN1aqa--9Al8GdwQtc,1575
|
|
46
46
|
tinybird/tb/modules/llm_utils.py,sha256=nS9r4FAElJw8yXtmdYrx-rtI2zXR8qXfi1QqUDCfxvg,3469
|
|
47
47
|
tinybird/tb/modules/local.py,sha256=tpiw_F_qOIp42h3kTBwTm5GQDyuVLF0QNF1jmB0zR94,6845
|
|
48
48
|
tinybird/tb/modules/local_common.py,sha256=_WODjW3oPshgsZ1jDFFx2nr0zrLi3Gxz5dlahWPobM8,17464
|
|
49
|
-
tinybird/tb/modules/login.py,sha256=
|
|
49
|
+
tinybird/tb/modules/login.py,sha256=zerXZqIv15pbFk5XRt746xGcVnp01YmL_403byBf4jQ,1245
|
|
50
|
+
tinybird/tb/modules/login_common.py,sha256=IfthYbHmC7EtsCXCB1iF4TngPOwfaHJ6Dfi_t7oBXnI,11640
|
|
50
51
|
tinybird/tb/modules/logout.py,sha256=sniI4JNxpTrVeRCp0oGJuQ3yRerG4hH5uz6oBmjv724,1009
|
|
51
52
|
tinybird/tb/modules/materialization.py,sha256=0O2JUCxLzz-DrXTUewVHlIyC6-Kyymw0hGXXDicMSHE,5403
|
|
52
|
-
tinybird/tb/modules/mock.py,sha256=
|
|
53
|
+
tinybird/tb/modules/mock.py,sha256=ET8sRpmXnQsd2sSJXH_KCdREU1_XQgkORru6T357Akc,3260
|
|
54
|
+
tinybird/tb/modules/mock_common.py,sha256=72yKp--Zo40hrycUtiajSRW2BojOsgOZFqUorQ_KQ3w,2279
|
|
53
55
|
tinybird/tb/modules/open.py,sha256=LYiuO8Z1I9O_v6pv58qpUCWFD6BT00BdeO21fRa4I4Y,1315
|
|
54
56
|
tinybird/tb/modules/pipe.py,sha256=xPKtezhnWZ6k_g82r4XpgKslofhuIxb_PvynH4gdUzI,2393
|
|
55
|
-
tinybird/tb/modules/project.py,sha256=
|
|
57
|
+
tinybird/tb/modules/project.py,sha256=YyoVnRzqEa8h5uXF4SjkhltChcVaYuUnE_jakKYue3A,6023
|
|
56
58
|
tinybird/tb/modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
57
59
|
tinybird/tb/modules/secret.py,sha256=9BIdh2PZDAbY2wRbf4ZDvkEltygztz1RMxgDmY1D0LI,3521
|
|
58
60
|
tinybird/tb/modules/secret_common.py,sha256=HyCLAI9WniDLwfK6SAb7ZUWorWjtf8j_GghlaTaos_I,1829
|
|
@@ -66,21 +68,24 @@ tinybird/tb/modules/watch.py,sha256=No0bK1M1_3CYuMaIgylxf7vYFJ72lTJe3brz6xQ-mJo,
|
|
|
66
68
|
tinybird/tb/modules/workspace.py,sha256=Q_8HcxMsNg8QG9aBlwcWS2umrDP5IkTIHqqz3sfmGuc,11341
|
|
67
69
|
tinybird/tb/modules/workspace_members.py,sha256=5JdkJgfuEwbq-t6vxkBhYwgsiTDxF790wsa6Xfif9nk,8608
|
|
68
70
|
tinybird/tb/modules/agent/__init__.py,sha256=i3oe3vDIWWPaicdCM0zs7D7BJ1W0k7th93ooskHAV00,54
|
|
69
|
-
tinybird/tb/modules/agent/agent.py,sha256=
|
|
71
|
+
tinybird/tb/modules/agent/agent.py,sha256=8NBSwQuu3AagieLfbNOXSWeud3WGyThBuyPuzZTtxJQ,17932
|
|
70
72
|
tinybird/tb/modules/agent/animations.py,sha256=z0MNLf8TnUO8qAjgYvth_wc9a9283pNVz1Z4jl15Ggs,2558
|
|
71
73
|
tinybird/tb/modules/agent/banner.py,sha256=KX_e467uiy1gWOZ4ofTZt0GCFGQqHQ_8Ob27XLQqda0,3053
|
|
72
74
|
tinybird/tb/modules/agent/memory.py,sha256=H6SJK--2L5C87B7AJd_jMqsq3sCvFvZwZXmajuT0GBE,1171
|
|
73
|
-
tinybird/tb/modules/agent/models.py,sha256=
|
|
74
|
-
tinybird/tb/modules/agent/prompts.py,sha256=
|
|
75
|
-
tinybird/tb/modules/agent/utils.py,sha256=
|
|
75
|
+
tinybird/tb/modules/agent/models.py,sha256=Of74wcU8oX05ricTqmhMHVHfeYo_pQbnbCI_q3mlx5E,682
|
|
76
|
+
tinybird/tb/modules/agent/prompts.py,sha256=fZMTbTbq8SHWob8-wA5fQFnZ9lJa7Y_66_9JvJT3xuc,6818
|
|
77
|
+
tinybird/tb/modules/agent/utils.py,sha256=7Y8bq_rZlqre8_OvLVjIvE8ZLOBpuKmXamyaNs02zzc,25231
|
|
76
78
|
tinybird/tb/modules/agent/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
tinybird/tb/modules/agent/tools/
|
|
78
|
-
tinybird/tb/modules/agent/tools/
|
|
79
|
-
tinybird/tb/modules/agent/tools/
|
|
79
|
+
tinybird/tb/modules/agent/tools/append.py,sha256=2q5y32jeNHJgbMsVmABn7y-KCoKwkqbMFJAm8OZ4zQc,2161
|
|
80
|
+
tinybird/tb/modules/agent/tools/build.py,sha256=LhzJMx6tbxC7gogIrxhfKJc-SDgoSR-FC6IunfaCdn8,758
|
|
81
|
+
tinybird/tb/modules/agent/tools/create_datafile.py,sha256=ZVLj5VT8udfYDqfbYu9U3f2IG2wSB3POwC-zB_JvfsA,2692
|
|
82
|
+
tinybird/tb/modules/agent/tools/deploy.py,sha256=Vv1SHalxZsl5QttaON0jBwJenj1cVOQiQ-cMiK2ULZg,1443
|
|
80
83
|
tinybird/tb/modules/agent/tools/deploy_check.py,sha256=VqMYC7l3_cihmmM_pi8w1t8rJ3P0xDc7pHs_st9k-9Q,684
|
|
81
84
|
tinybird/tb/modules/agent/tools/explore.py,sha256=ihALc_kBcsjrKT3hZyicqyIowB0g_K3AtNNi-5uz9-8,412
|
|
82
|
-
tinybird/tb/modules/agent/tools/
|
|
85
|
+
tinybird/tb/modules/agent/tools/mock.py,sha256=c4fY8_D92tOUBr0DoqoA5lEE3FgvUQHP6JE75mfTBko,2491
|
|
86
|
+
tinybird/tb/modules/agent/tools/plan.py,sha256=wQY4gNtFTOEy2yZUGf8VqefPUbbz5DgMZdrzGRk-wiE,1365
|
|
83
87
|
tinybird/tb/modules/agent/tools/preview_datafile.py,sha256=e9q5fR0afApcrntzFrnuHmd10ex7MG_GM6T0Pwc9bRI,850
|
|
88
|
+
tinybird/tb/modules/agent/tools/read_fixture_data.py,sha256=XgeDld6YTOjWNcJ7cr8bHD2phG6W-h5UuC2amGSBnQw,977
|
|
84
89
|
tinybird/tb/modules/datafile/build.py,sha256=NFKBrusFLU0WJNCXePAFWiEDuTaXpwc0lHlOQWEJ43s,51117
|
|
85
90
|
tinybird/tb/modules/datafile/build_common.py,sha256=2yNdxe49IMA9wNvl25NemY2Iaz8L66snjOdT64dm1is,4511
|
|
86
91
|
tinybird/tb/modules/datafile/build_datasource.py,sha256=Ra8pVQBDafbFRUKlhpgohhTsRyp_ADKZJVG8Gd69idY,17227
|
|
@@ -101,8 +106,8 @@ tinybird/tb_cli_modules/config.py,sha256=IsgdtFRnUrkY8-Zo32lmk6O7u3bHie1QCxLwgp4
|
|
|
101
106
|
tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
|
|
102
107
|
tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
|
|
103
108
|
tinybird/tb_cli_modules/telemetry.py,sha256=Hh2Io8ZPROSunbOLuMvuIFU4TqwWPmQTqal4WS09K1A,10449
|
|
104
|
-
tinybird-0.0.1.
|
|
105
|
-
tinybird-0.0.1.
|
|
106
|
-
tinybird-0.0.1.
|
|
107
|
-
tinybird-0.0.1.
|
|
108
|
-
tinybird-0.0.1.
|
|
109
|
+
tinybird-0.0.1.dev248.dist-info/METADATA,sha256=Q2bYzjGQkmxcw_IutVCHU3qK6Au414Yse04ys2JugeA,1733
|
|
110
|
+
tinybird-0.0.1.dev248.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
111
|
+
tinybird-0.0.1.dev248.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
|
|
112
|
+
tinybird-0.0.1.dev248.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
|
|
113
|
+
tinybird-0.0.1.dev248.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|