indent 0.1.10__tar.gz → 0.1.12__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.
- {indent-0.1.10 → indent-0.1.12}/.gitignore +1 -0
- {indent-0.1.10 → indent-0.1.12}/PKG-INFO +3 -3
- {indent-0.1.10 → indent-0.1.12}/exponent/__init__.py +16 -3
- indent-0.1.12/exponent/commands/cloud_commands.py +667 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/commands/common.py +4 -9
- {indent-0.1.10 → indent-0.1.12}/exponent/commands/config_commands.py +1 -161
- {indent-0.1.10 → indent-0.1.12}/exponent/commands/run_commands.py +20 -9
- {indent-0.1.10 → indent-0.1.12}/exponent/commands/utils.py +3 -3
- {indent-0.1.10 → indent-0.1.12}/exponent/commands/workflow_commands.py +2 -2
- {indent-0.1.10 → indent-0.1.12}/exponent/core/config.py +0 -1
- indent-0.1.12/exponent/core/graphql/mutations.py +189 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/graphql/queries.py +23 -0
- indent-0.1.12/exponent/core/graphql/subscriptions.py +16 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/cli_rpc_types.py +48 -1
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/client.py +114 -26
- indent-0.1.12/exponent/core/remote_execution/file_write.py +35 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/files.py +1 -102
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/git.py +1 -1
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/http_fetch.py +3 -4
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/languages/python_execution.py +1 -1
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/languages/shell_streaming.py +1 -1
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/session.py +1 -1
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/system_context.py +0 -3
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/tool_execution.py +24 -4
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/truncation.py +51 -47
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/types.py +25 -79
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/utils.py +23 -51
- {indent-0.1.10 → indent-0.1.12}/exponent/core/types/event_types.py +2 -2
- {indent-0.1.10 → indent-0.1.12}/exponent/core/types/generated/strategy_info.py +0 -12
- {indent-0.1.10 → indent-0.1.12}/exponent/utils/version.py +1 -1
- {indent-0.1.10 → indent-0.1.12}/pyproject.toml +3 -42
- indent-0.1.10/exponent/commands/cloud_commands.py +0 -85
- indent-0.1.10/exponent/core/graphql/cloud_config_queries.py +0 -77
- indent-0.1.10/exponent/core/graphql/mutations.py +0 -75
- indent-0.1.10/exponent/core/graphql/subscriptions.py +0 -465
- indent-0.1.10/exponent/core/remote_execution/file_write.py +0 -410
- {indent-0.1.10 → indent-0.1.12}/exponent/cli.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/commands/settings.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/commands/types.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/commands/upgrade.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/graphql/__init__.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/graphql/client.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/graphql/get_chats_query.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/graphql/github_config_queries.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/checkpoints.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/code_execution.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/error_info.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/exceptions.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/remote_execution/languages/types.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/types/__init__.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/types/command_data.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/core/types/generated/__init__.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/migration-docs/login.md +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/py.typed +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/utils/__init__.py +0 -0
- {indent-0.1.10 → indent-0.1.12}/exponent/utils/colors.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: indent
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.12
|
|
4
4
|
Summary: Indent is an AI Pair Programmer
|
|
5
5
|
Author-email: Sashank Thupukari <sashank@exponent.run>
|
|
6
6
|
Requires-Python: <3.13,>=3.10
|
|
@@ -14,7 +14,7 @@ Requires-Dist: diff-match-patch<20230431,>=20230430
|
|
|
14
14
|
Requires-Dist: eval-type-backport<0.3,>=0.2.0
|
|
15
15
|
Requires-Dist: git-python>=1.0.3
|
|
16
16
|
Requires-Dist: gitignore-parser<0.2,>=0.1.11
|
|
17
|
-
Requires-Dist: gql[httpx,websockets]
|
|
17
|
+
Requires-Dist: gql[httpx,websockets]~=4.0
|
|
18
18
|
Requires-Dist: httpx>=0.28.1
|
|
19
19
|
Requires-Dist: ipykernel<7,>=6.29.4
|
|
20
20
|
Requires-Dist: jupyter-client<9,>=8.6.1
|
|
@@ -32,4 +32,4 @@ Requires-Dist: rapidfuzz<4,>=3.9.0
|
|
|
32
32
|
Requires-Dist: rich<14,>=13.7.1
|
|
33
33
|
Requires-Dist: sentry-sdk<3,>=2.1.1
|
|
34
34
|
Requires-Dist: toml<0.11,>=0.10.2
|
|
35
|
-
Requires-Dist: websockets~=
|
|
35
|
+
Requires-Dist: websockets~=15.0
|
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# file generated by setuptools-scm
|
|
2
2
|
# don't change, don't track in version control
|
|
3
3
|
|
|
4
|
-
__all__ = [
|
|
4
|
+
__all__ = [
|
|
5
|
+
"__version__",
|
|
6
|
+
"__version_tuple__",
|
|
7
|
+
"version",
|
|
8
|
+
"version_tuple",
|
|
9
|
+
"__commit_id__",
|
|
10
|
+
"commit_id",
|
|
11
|
+
]
|
|
5
12
|
|
|
6
13
|
TYPE_CHECKING = False
|
|
7
14
|
if TYPE_CHECKING:
|
|
@@ -9,13 +16,19 @@ if TYPE_CHECKING:
|
|
|
9
16
|
from typing import Union
|
|
10
17
|
|
|
11
18
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
19
|
+
COMMIT_ID = Union[str, None]
|
|
12
20
|
else:
|
|
13
21
|
VERSION_TUPLE = object
|
|
22
|
+
COMMIT_ID = object
|
|
14
23
|
|
|
15
24
|
version: str
|
|
16
25
|
__version__: str
|
|
17
26
|
__version_tuple__: VERSION_TUPLE
|
|
18
27
|
version_tuple: VERSION_TUPLE
|
|
28
|
+
commit_id: COMMIT_ID
|
|
29
|
+
__commit_id__: COMMIT_ID
|
|
19
30
|
|
|
20
|
-
__version__ = version = '0.1.
|
|
21
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
31
|
+
__version__ = version = '0.1.12'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 1, 12)
|
|
33
|
+
|
|
34
|
+
__commit_id__ = commit_id = None
|