feat(Add pydantic-ai agent):

This commit is contained in:
Alexander Myasoedov
2025-01-25 12:50:02 +02:00
parent 31196f2071
commit 259361d279
5 changed files with 123 additions and 21 deletions
-2
View File
@@ -4,7 +4,6 @@ The `Module` class interface provides a standardized way to create and use modul
Here is an example of a module that implements the `ModuleProtocol` interface. This example shows how to create a module that processes prompts and sends results to a queue.
```python
from typing import List, Dict, Any, AsyncGenerator
import asyncio
@@ -42,4 +41,3 @@ async def main():
asyncio.run(main())
```