Jerron Lim
Jerron Lim
I'm using APIRouter to separate my routes like so: ```python # app/main.py app.include_router(api_router, prefix='/api/v1') # app/api/main.py from app.api.routes import chat api_router = APIRouter() api_router.include_router(chat.router, prefix="/chat", tags=["chats"]) # app/api/routes/chat.py router =...
Update playground tests to check for the correct playground assets path in index.html. #578
### Checked other resources - [X] I added a very descriptive title to this issue. - [X] I searched the [LangGraph](https://langchain-ai.github.io/langgraph/)/LangChain documentation with the integrated search. - [X] I used...
### Privileged issue - [X] I'm @StreetLamb or he asked me directly to create an issue here. ### Issue Content Currently, all tables only show the first page of results....
Scheduling assistant MVP built with mcp-agent. The assistant will poll gmail inbox every minute and process incoming emails.
Adds support for AWS Bedrock models as requested in #40
Adds support for Azure models as requested in #73 #40
Fixes #94. Previously MCP server response from tool calling was not converted to Anthropic's ToolResultBlockParam content type.