We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b63aeb8 commit 97d4d0cCopy full SHA for 97d4d0c
docs/docs/deploy.md
@@ -134,7 +134,7 @@ updated_cloud_app = engine.update_function_code(
134
path="/my-agent-project" # 本地项目路径
135
)
136
137
-print(f"应用已更新,访问地址:{updated_cloud_app.vefaas_endpoint}")
+# 可以使用updated_cloud_app.vefaas_endpoint访问您的项目
138
```
139
140
**注意事项:**
@@ -152,7 +152,7 @@ from veadk.cloud.cloud_agent_engine import CloudAgentEngine
152
engine = CloudAgentEngine()
153
154
# 删除指定的云应用
155
-engine.remove("my-agent-app")
+engine.remove(app_name="my-agent-app")
156
157
158
执行时会提示确认:
0 commit comments