Skip to content

Commit 90c4e05

Browse files
feat: support ark model to 1.8 in veadk create command (#373)
* feat: support ark model to 1.8 * revert const
1 parent 96efdbc commit 90c4e05

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "veadk-python"
3-
version = "0.2.31"
3+
version = "0.2.32"
44
description = "Volcengine agent development kit, integrations with Volcengine cloud services."
55
readme = "README.md"
66
requires-python = ">=3.10"

veadk/cli/cli_create.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import click
1615
import shutil
1716
from pathlib import Path
1817

18+
import click
19+
1920
_ENV_TEMPLATE = """\
2021
MODEL_AGENT_API_KEY={ark_api_key}
2122
"""
@@ -31,7 +32,7 @@
3132
name="root_agent",
3233
description="A helpful assistant for user questions.",
3334
instruction="Answer user questions to the best of your knowledge",
34-
model_name="doubao-seed-1-6-251015", # <---- you can change your model here
35+
model_name="doubao-seed-1-8-251215", # <---- change model here
3536
)
3637
"""
3738

veadk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = "0.2.31"
15+
VERSION = "0.2.32"

0 commit comments

Comments
 (0)