Skip to content

Commit 1a7fcc2

Browse files
authored
Merge pull request #313 from ag-ui-protocol/chore/release-lg-integration-0.0.10
Chore/release lg integration 0.0.10
2 parents 5bf785f + f3be9a9 commit 1a7fcc2

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.vscode/
2+
.idea/

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,

typescript-sdk/integrations/langgraph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)