Compare commits

..

4 Commits

Author SHA1 Message Date
Lucas Gomide
d26ece7343 Merge branch 'main' into fix-issue-2263 2025-04-14 17:29:48 -03:00
Lucas Gomide
739d58a3ec Merge branch 'main' into fix-issue-2263 2025-04-14 16:35:46 -03:00
Lorenze Jay
7b1388b34c Merge branch 'main' into fix-issue-2263 2025-04-14 08:35:46 -07:00
Lucas Gomide
24a0f66141 fix: add type hints and ignore type checks for config access 2025-04-14 11:46:45 -03:00
3 changed files with 1 additions and 35 deletions

View File

@@ -1,33 +0,0 @@
name: Notify Downstream
on:
push:
branches:
- main
permissions:
contents: read
jobs:
notify-downstream:
runs-on: ubuntu-latest
steps:
- name: Generate GitHub App token
id: app-token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.OSS_SYNC_APP_ID }}
private_key: ${{ secrets.OSS_SYNC_APP_PRIVATE_KEY }}
- name: Notify Repo B
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ steps.app-token.outputs.token }}
repository: ${{ secrets.OSS_SYNC_DOWNSTREAM_REPO }}
event-type: upstream-commit
client-payload: |
{
"commit_sha": "${{ github.sha }}"
}

View File

@@ -535,7 +535,6 @@ class Agent(BaseAgent):
verbose=self.verbose,
response_format=response_format,
i18n=self.i18n,
original_agent=self,
)
return await lite_agent.kickoff_async(messages)

View File

@@ -21,7 +21,7 @@ class SQLiteFlowPersistence(FlowPersistence):
moderate performance requirements.
"""
db_path: str
db_path: str # Type annotation for instance variable
def __init__(self, db_path: Optional[str] = None):
"""Initialize SQLite persistence.