Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
8efbb19
SDK regeneration
fern-api[bot] May 12, 2026
5c866cf
feat(agentkit): add v1.4 session think and mllm parity
digitallysavvy May 13, 2026
96045db
test(mypy): add explicit typing for custom think test stub
digitallysavvy May 13, 2026
db1a877
fix(agentkit): tighten think typing and add async think parity test
digitallysavvy May 13, 2026
89e4508
test(mypy): use typed AgentThinkResponse attributes in custom think t…
digitallysavvy May 13, 2026
2108c8f
test(py): return AgentThinkResponse in think stubs for runtime/type p…
digitallysavvy May 13, 2026
37b01dd
feat(agentkit): export think response and action types on public surface
digitallysavvy May 13, 2026
b6b043b
fix(agentkit): close minimax preset inference gaps and add preset par…
digitallysavvy May 13, 2026
8addd98
fix(agentkit): expose llm headers and align mllm enablemen
digitallysavvy May 13, 2026
f74da03
fix(agentkit): expose llm headers and align mllm enablement
digitallysavvy May 13, 2026
74dcdad
feat(agentkit): add deepgram tts vendor
digitallysavvy May 13, 2026
1b0ff31
fix(agentkit): expose tools and mark heygen deprecated
digitallysavvy May 13, 2026
c045e6a
docs(agentkit): document deepgram tts headers and tools builder
digitallysavvy May 13, 2026
ad6f8b4
chore(agentkit): close vendor docs and builder test gaps
digitallysavvy May 13, 2026
0d290b1
feat(agentkit): align v1.4 mllm and interruption parity
digitallysavvy May 13, 2026
33109ad
updated changelog
digitallysavvy May 13, 2026
db97a6a
SDK regeneration
fern-api[bot] May 13, 2026
431f78c
chore(core): merge regenerated v1.4 core SDK
digitallysavvy May 13, 2026
93ee96c
docs: update v1.4.0 changelog
digitallysavvy May 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ src/agora_agent/agentkit/

# Documentation - managed manually, not generated by Fern
docs/

# Dependency manifests/lockfiles are managed manually
pyproject.toml
poetry.lock
requirements.txt
28 changes: 24 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: poetry install
- name: Validate docs
run: poetry run python scripts/validate_docs.py
- name: Compile
run: poetry run mypy .
test:
Expand All @@ -33,8 +31,30 @@ jobs:
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: poetry install
- name: Validate docs
run: poetry run python scripts/validate_docs.py

- name: Test
run: poetry run pytest -rP .

publish:
needs: [compile, test]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
- name: Install dependencies
run: poetry install
- name: Publish to pypi
run: |
poetry config repositories.remote https://upload.pypi.org/legacy/
poetry --no-interaction -v publish --build --repository remote --username "$PYPI_USERNAME" --password "$PYPI_PASSWORD"
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
76 changes: 0 additions & 76 deletions .github/workflows/release.yml

This file was deleted.

Loading
Loading