File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
typescript-sdk/integrations/agno/examples Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,15 @@ description = "Example usage of the AG-UI adapter for Agno"
7
7
license = " MIT"
8
8
9
9
readme = " README.md"
10
- requires-python = " >=3.12"
10
+ requires-python = " >=3.12,<4.0 "
11
11
dependencies = [
12
12
" agno>=1.7.7" ,
13
13
" openai>=1.99.1" ,
14
14
" yfinance>=0.2.63" ,
15
15
" fastapi>=0.116.1" ,
16
16
" uvicorn>=0.35.0" ,
17
17
" ag-ui-protocol>=0.1.8" ,
18
+ " dotenv (>=0.9.9,<0.10.0)" ,
18
19
]
19
20
authors = [
20
21
{name = " AG-UI Team" }
Original file line number Diff line number Diff line change 5
5
AG-UI dojo features:
6
6
- Agentic Chat (Investment Analyst with Finance tools)
7
7
"""
8
-
9
8
from __future__ import annotations
10
9
11
10
from fastapi import FastAPI
12
11
import uvicorn
13
12
import os
13
+ from dotenv import load_dotenv
14
+ load_dotenv ()
14
15
15
16
from .api import (
16
17
agentic_chat_app ,
You can’t perform that action at this time.
0 commit comments