We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdb9e30 commit e329350Copy full SHA for e329350
.github/workflows/test.yml
@@ -8,7 +8,9 @@ on:
8
jobs:
9
test:
10
runs-on: ubuntu-latest
11
-
+ env:
12
+ STACKONE_API_KEY: ${{ secrets.STACKONE_API_KEY }}
13
+ OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
14
steps:
15
- uses: actions/checkout@v4
16
packages/stackone-ai/stackone_ai/tools.py
@@ -134,7 +134,7 @@ def to_langchain(self) -> BaseTool:
134
tool_self = self # Capture self reference for inner class
135
136
# Create properly annotated schema for the tool
137
- schema_props: dict[str, Field] = {}
+ schema_props: dict[str, Any] = {}
138
annotations: dict[str, Any] = {}
139
140
for name, details in self.parameters.properties.items():
0 commit comments