@cturing写个一个调用 skills 的 sdk,大家随意交流 中发帖

几行代码就能实现调用 
import asyncio
from openskills import create_agent

async def main():
# Create agent with skills
agent = await create_agent(
skill_paths=["./skills"],
api_key="your-api-key",
model="gpt-4",
)

# Chat with automatic skill invocation
response = await agent.chat("帮我总结会议")
print(response.content)
print(f"Used skill: {response.skill_used}"...