Skip to content

Commit 5e2d045

Browse files
authored
Merge pull request #176 from dashscope/release/agentic-cli
feat(cli): bundle Agentic CLI as the default dashscope AI assistant (1.27.0)
2 parents 179910b + 2b0a5ee commit 5e2d045

161 files changed

Lines changed: 34108 additions & 499 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 6 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ share/python-wheels/
2727
MANIFEST
2828

2929
# PyInstaller
30-
# Usually these files are written by a python script from a template
31-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
3230
*.manifest
3331
*.spec
3432

@@ -82,42 +80,12 @@ target/
8280
profile_default/
8381
ipython_config.py
8482

85-
# pyenv
86-
# For a library or package, you might want to ignore these files since the code is
87-
# intended to run in multiple environments; otherwise, check them in:
88-
# .python-version
89-
90-
# pipenv
91-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94-
# install all needed dependencies.
95-
#Pipfile.lock
96-
97-
# UV
98-
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99-
# This is especially recommended for binary packages to ensure reproducibility, and is more
100-
# commonly ignored for libraries.
101-
#uv.lock
102-
103-
# poetry
104-
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105-
# This is especially recommended for binary packages to ensure reproducibility, and is more
106-
# commonly ignored for libraries.
107-
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108-
#poetry.lock
109-
11083
# pdm
111-
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
112-
#pdm.lock
113-
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
114-
# in version control.
115-
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
11684
.pdm.toml
11785
.pdm-python
11886
.pdm-build/
11987

120-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
88+
# PEP 582
12189
__pypackages__/
12290

12391
# Celery stuff
@@ -161,16 +129,12 @@ dmypy.json
161129
cython_debug/
162130

163131
# PyCharm
164-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
165-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
166-
# and can be added to the global gitignore or merged into this file. For a more nuclear
167-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
168-
#.idea/
132+
.idea/
133+
134+
# Ruff stuff:
135+
.ruff_cache/
169136

170137
# PyPI configuration file
171138
.pypirc
172139

173-
# acli
174-
.acli
175-
176-
.idea
140+
/.acli/

CHANGELOG.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ include dashscope/py.typed
33
include dashscope/__init__.pyi
44
include NOTICE
55
include LICENSE.certifi
6+
recursive-include dashscope/acli/examples *.md *.toml *.py
67
include requirements.txt

0 commit comments

Comments
 (0)