Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
24 lines
802 B
Python
24 lines
802 B
Python
# coding: utf-8
|
|
# Copyright (c) 2025 inclusionAI.
|
|
import asyncio
|
|
|
|
from aworld.config import RunConfig
|
|
|
|
from aworld.config.conf import AgentConfig
|
|
from aworld.core.task import Task
|
|
from aworld.runner import Runners
|
|
from tests.gym_demo.agent import GymDemoAgent as GymAgent
|
|
|
|
|
|
async def main():
|
|
agent = GymAgent(name="gym_agent", conf=AgentConfig(), tool_names=["gym"], feedback_tool_result=True)
|
|
# It can also be used `ToolFactory` for simplification.
|
|
task = Task(agent=agent,
|
|
tools_conf={"gym": {"env_id": "CartPole-v1", "render_mode": "human", "render": True, "use_async": True}})
|
|
res = await Runners.run_task(task=task, run_conf=RunConfig())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# We use it as a showcase to demonstrate the framework's scalability.
|
|
asyncio.run(main())
|