Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.vscode/
.idea/
3 changes: 2 additions & 1 deletion typescript-sdk/integrations/agno/examples/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ description = "Example usage of the AG-UI adapter for Agno"
license = "MIT"

readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.12,<4.0"
dependencies = [
"agno>=1.7.7",
"openai>=1.99.1",
"yfinance>=0.2.63",
"fastapi>=0.116.1",
"uvicorn>=0.35.0",
"ag-ui-protocol>=0.1.8",
"dotenv (>=0.9.9,<0.10.0)",
]
authors = [
{name = "AG-UI Team"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
AG-UI dojo features:
- Agentic Chat (Investment Analyst with Finance tools)
"""

from __future__ import annotations

from fastapi import FastAPI
import uvicorn
import os
from dotenv import load_dotenv
load_dotenv()

from .api import (
agentic_chat_app,
Expand Down
2 changes: 1 addition & 1 deletion typescript-sdk/integrations/langgraph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ag-ui/langgraph",
"version": "0.0.9",
"version": "0.0.10",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
Loading