Skip to content

Commit e329350

Browse files
author
Matt Carey
committed
fix: ci
1 parent cdb9e30 commit e329350

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ on:
88
jobs:
99
test:
1010
runs-on: ubuntu-latest
11-
11+
env:
12+
STACKONE_API_KEY: ${{ secrets.STACKONE_API_KEY }}
13+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
1214
steps:
1315
- uses: actions/checkout@v4
1416

packages/stackone-ai/stackone_ai/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def to_langchain(self) -> BaseTool:
134134
tool_self = self # Capture self reference for inner class
135135

136136
# Create properly annotated schema for the tool
137-
schema_props: dict[str, Field] = {}
137+
schema_props: dict[str, Any] = {}
138138
annotations: dict[str, Any] = {}
139139

140140
for name, details in self.parameters.properties.items():

0 commit comments

Comments
 (0)