GitHub - ShaojieJiang/extendable-agent: An Agentic platform that allows you to define extensions
Extendable Agent
An Agentic platform that allows you to define extensions.
demo.mov
You can also define output schema through Pydantic data models, and then you can ask the chatbot to generate structured outputs.
import datetime
from pydantic import BaseModel
from pydantic import Field
class TimeNow(BaseModel):
"""Output format when displaying time."""
date: datetime.date = Field(..., description="The date")
time: datetime.time = Field(..., description="The time")
Installation
Usage...
Read more at github.com