Skip to content

Commit 6df0d80

Browse files
committed
feat: support ark model to 1.8
1 parent 1ce1662 commit 6df0d80

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
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/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
DEFAULT_AGENT_NAME = "veAgent"
2121

22-
DEFAULT_MODEL_AGENT_NAME = "doubao-seed-1-6-251015"
22+
DEFAULT_MODEL_AGENT_NAME = "doubao-seed-1-8-251215"
2323
DEFAULT_MODEL_AGENT_PROVIDER = "openai"
2424
DEFAULT_MODEL_AGENT_API_BASE = "https://ark.cn-beijing.volces.com/api/v3/"
2525
DEFAULT_MODEL_EXTRA_CONFIG = {

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)