Skip to content

Commit f3be9a9

Browse files
committed
chore: attempt fix flaky test
1 parent dc0f058 commit f3be9a9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

typescript-sdk/integrations/agno/examples/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ description = "Example usage of the AG-UI adapter for Agno"
77
license = "MIT"
88

99
readme = "README.md"
10-
requires-python = ">=3.12"
10+
requires-python = ">=3.12,<4.0"
1111
dependencies = [
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
]
1920
authors = [
2021
{name = "AG-UI Team"}

typescript-sdk/integrations/agno/examples/server/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
AG-UI dojo features:
66
- Agentic Chat (Investment Analyst with Finance tools)
77
"""
8-
98
from __future__ import annotations
109

1110
from fastapi import FastAPI
1211
import uvicorn
1312
import os
13+
from dotenv import load_dotenv
14+
load_dotenv()
1415

1516
from .api import (
1617
agentic_chat_app,

0 commit comments

Comments
 (0)