You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
698 B
Python
31 lines
698 B
Python
from __future__ import annotations
|
|
from typing import Any
|
|
|
|
from agentkit.base.agent import BaseAgent
|
|
|
|
|
|
class BaseAgentFactory:
|
|
def __init__(self, props: dict):
|
|
pass
|
|
|
|
|
|
async def __aenter__(self) -> BaseAgentFactory:
|
|
return self
|
|
|
|
|
|
async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None:
|
|
return None
|
|
|
|
|
|
async def new_from_id(self, agent_id: str) -> BaseAgent | None:
|
|
"""
|
|
Create agent from agent id.
|
|
"""
|
|
return None
|
|
|
|
|
|
async def new_from_config(self, agent_type: str, config: dict) -> BaseAgent | None:
|
|
"""
|
|
Create agent from agent type and config.
|
|
"""
|
|
return None |