13 lines
284 B
Python
13 lines
284 B
Python
# agy.py — Antigravity (agy) agent adapter
|
|
|
|
from lib_py.agents.base import BaseAgentAdapter
|
|
|
|
class AgyAgentAdapter(BaseAgentAdapter):
|
|
@property
|
|
def name(self) -> str:
|
|
return 'agy'
|
|
|
|
@property
|
|
def own_key(self) -> str:
|
|
return 'agy_conversation_id_own'
|