feat: implement skeleton phase

This commit is contained in:
hh
2026-05-19 14:19:15 +02:00
parent 75a23d231e
commit 221e660c5c
21 changed files with 586 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
"""Raycast agent definition."""
from __future__ import annotations
from raycast_api import Source
from beaver_gateway.agents.base import BaseAgent
class RaycastAgent(BaseAgent):
"""Agent backed by ``raycast-api``."""
streaming: bool = True
available_native_tools: tuple[str, ...] = ()
source: Source = Source.AI_CHAT