File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
typescript-sdk/integrations Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11.vscode /
2+ .idea /
Original file line number Diff line number Diff line change @@ -7,14 +7,15 @@ description = "Example usage of the AG-UI adapter for Agno"
77license = " MIT"
88
99readme = " README.md"
10- requires-python = " >=3.12"
10+ requires-python = " >=3.12,<4.0 "
1111dependencies = [
1212 " agno>=1.7.7" ,
1313 " openai>=1.99.1" ,
1414 " yfinance>=0.2.63" ,
1515 " fastapi>=0.116.1" ,
1616 " uvicorn>=0.35.0" ,
1717 " ag-ui-protocol>=0.1.8" ,
18+ " dotenv (>=0.9.9,<0.10.0)" ,
1819]
1920authors = [
2021 {name = " AG-UI Team" }
Original file line number Diff line number Diff line change 55AG-UI dojo features:
66- Agentic Chat (Investment Analyst with Finance tools)
77"""
8-
98from __future__ import annotations
109
1110from fastapi import FastAPI
1211import uvicorn
1312import os
13+ from dotenv import load_dotenv
14+ load_dotenv ()
1415
1516from .api import (
1617 agentic_chat_app ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @ag-ui/langgraph" ,
3- "version" : " 0.0.9 " ,
3+ "version" : " 0.0.10 " ,
44 "main" : " ./dist/index.js" ,
55 "module" : " ./dist/index.mjs" ,
66 "types" : " ./dist/index.d.ts" ,
You can’t perform that action at this time.
0 commit comments