You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<img src="assets/images/logo.png" alt="Volcengine Agent Development Kit Logo" width="80%">
3
3
</p>
4
4
5
5
<palign="center">
6
6
<h1 align="center">Volcengine Agent Development Kit</h1>
7
7
</p>
8
8
9
-
10
9
An open-source kit for agent development, integrated the powerful capabilities of Volcengine.
11
10
12
11
## Installation
@@ -35,29 +34,26 @@ uv sync
35
34
uv pip install -e .
36
35
```
37
36
38
-
Enjoy VeADK:
37
+
## Configuration
38
+
39
+
We recommand you to create a `config.yaml` file in the root directory of your own project, `VeADK` is able to read it automatically.
40
+
41
+
You can refer to the [example config file](config.yaml.example) for more details.
42
+
43
+
## Have a try
44
+
45
+
Enjoy a minimal agent from VeADK:
39
46
40
47
```python
41
48
from veadk import Agent
42
49
import asyncio
43
50
44
51
agent = Agent()
52
+
45
53
res = asyncio.run(agent.run("hello!"))
46
54
print(res)
47
55
```
48
56
49
-
## Configuration
50
-
51
-
We recommand you to create a `config.yaml` file in the root directory of your project. You can refer to the [example config file](config.yaml.example) for more details.
0 commit comments