Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: upgrade gpt vis to v0.3 #43

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bindings/streamlit-gpt-vis/example/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Add some test code to play with the component while it's in development.
# During development, we can run this just as we would any other Streamlit
# app: `$ streamlit run my_component/example.py`
# app: `$ streamlit run example/basic.py`

st.subheader("Component with constant args")

Expand Down
4 changes: 2 additions & 2 deletions bindings/streamlit-gpt-vis/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
here = os.path.abspath(os.path.dirname(__file__))

__title__ = "streamlit-gpt-vis"
__version__ = "0.0.2"
__version__ = "0.0.3"

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
Expand Down Expand Up @@ -50,7 +50,7 @@ def run(self):
version=__version__,
author="@lvisei",
author_email="[email protected]",
description="Components for GPTs, generative AI, and LLM projects. Not only UI Components.",
description="Binding for GPT-Vis, Components for GPTs, generative AI, and LLM projects. Not only UI Components.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/antvis/GPT-Vis/bindings/streamlit-gpt-vis",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
"@antv/gpt-vis": "^0.1.0",
"@antv/gpt-vis": "^0.3.0",
"antd": "^5.22.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand Down
Loading