codebind 0.4.1__tar.gz → 0.4.2__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.
- {codebind-0.4.1 → codebind-0.4.2}/PKG-INFO +2 -2
- {codebind-0.4.1 → codebind-0.4.2}/pyproject.toml +2 -2
- {codebind-0.4.1 → codebind-0.4.2}/pyproject.toml.orig +2 -2
- {codebind-0.4.1 → codebind-0.4.2}/LICENSE +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/README.md +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/data/share/jupyter/labextensions/codebind-jupyterlab/install.json +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/data/share/jupyter/labextensions/codebind-jupyterlab/package.json +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/data/share/jupyter/labextensions/codebind-jupyterlab/static/590.6544266cd73a003b.js +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/data/share/jupyter/labextensions/codebind-jupyterlab/static/remoteEntry.6f017385dfc989f1.js +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/data/share/jupyter/labextensions/codebind-jupyterlab/static/style.js +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/data/share/jupyter/labextensions/codebind-jupyterlab/static/third-party-licenses.json +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/jupyterlab/.yarnrc.yml +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/jupyterlab/install.json +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/jupyterlab/package.json +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/jupyterlab/src/index.ts +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/jupyterlab/tsconfig.json +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/jupyterlab/yarn.lock +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/src/codebind/__init__.py +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/src/codebind/cli.py +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/src/codebind/display.py +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/src/codebind/execution.py +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/src/codebind/extension.py +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/src/codebind/jupyter.py +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/src/codebind/py.typed +0 -0
- {codebind-0.4.1 → codebind-0.4.2}/src/codebind/session.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codebind
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: A frontend-neutral model loop for persistent IPython sessions.
|
|
5
5
|
Keywords: ai,ipython,llm,repl,agents
|
|
6
6
|
Author: Giovanni Gravili
|
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
17
17
|
Classifier: Typing :: Typed
|
|
18
18
|
Requires-Dist: ipython>=9.0
|
|
19
19
|
Requires-Dist: langchain-core>=1.0
|
|
20
|
-
Requires-Dist: models-provider>=0.1.
|
|
20
|
+
Requires-Dist: models-provider>=0.1.1
|
|
21
21
|
Requires-Python: >=3.13
|
|
22
22
|
Project-URL: Repository, https://github.com/ghovax/codebind
|
|
23
23
|
Project-URL: Issues, https://github.com/ghovax/codebind/issues
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codebind"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.2"
|
|
4
4
|
description = "A frontend-neutral model loop for persistent IPython sessions."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.13"
|
|
@@ -26,7 +26,7 @@ classifiers = [
|
|
|
26
26
|
dependencies = [
|
|
27
27
|
"ipython>=9.0",
|
|
28
28
|
"langchain-core>=1.0",
|
|
29
|
-
"models-provider>=0.1.
|
|
29
|
+
"models-provider>=0.1.1",
|
|
30
30
|
]
|
|
31
31
|
|
|
32
32
|
[[project.authors]]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codebind"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.2"
|
|
4
4
|
description = "A frontend-neutral model loop for persistent IPython sessions."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -23,7 +23,7 @@ classifiers = [
|
|
|
23
23
|
dependencies = [
|
|
24
24
|
"ipython>=9.0",
|
|
25
25
|
"langchain-core>=1.0",
|
|
26
|
-
"models-provider>=0.1.
|
|
26
|
+
"models-provider>=0.1.1",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
{codebind-0.4.1 → codebind-0.4.2}/data/share/jupyter/labextensions/codebind-jupyterlab/install.json
RENAMED
|
File without changes
|
{codebind-0.4.1 → codebind-0.4.2}/data/share/jupyter/labextensions/codebind-jupyterlab/package.json
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|