Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/publish-tag-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
python-version: "3.x"
- name: Install build tool
run: python3 -m pip install build --user
run: python3 -m pip install build --user --upgrade
- name: Build wheel and source distribution
run: python3 -m build
- name: Upload distributables as artifact
Expand All @@ -39,7 +39,7 @@ jobs:
path: dist/

- name: Install Twine
run: python3 -m pip install --user twine
run: python3 -m pip install --user --upgrade twine

- name: Publish to PyPI
env:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "veadk-python"
version = "0.2.2"
version = "0.2.4"
description = "Volcengine agent development kit, integrations with Volcengine cloud services."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
3 changes: 3 additions & 0 deletions veadk/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
from veadk.tracing.base_tracer import BaseTracer
from veadk.utils.logger import get_logger
from veadk.utils.patches import patch_asyncio
from veadk.version import VERSION

patch_asyncio()
logger = get_logger(__name__)
Expand Down Expand Up @@ -112,6 +113,8 @@ def model_post_init(self, __context: Any) -> None:

self.tools.append(load_memory)

logger.info(f"VeADK version: {VERSION}")

logger.info(f"{self.__class__.__name__} `{self.name}` init done.")
logger.debug(
f"Agent: {self.model_dump(include={'name', 'model_name', 'model_api_base', 'tools', 'serve_url'})}"
Expand Down
2 changes: 1 addition & 1 deletion veadk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

VERSION = "0.2.2"
VERSION = "0.2.4"