Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion scripts/sync_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from pathlib import Path

# ── Pin the schema version here ──────────────────────────────────────
SCHEMA_VERSION = "v0.3.5"
SCHEMA_VERSION = "v0.3.7"
# ────────────────────────────────────────────────────────────────────

DEST = Path(__file__).resolve().parent.parent / "src" / "jambonz_sdk" / "schema"
Expand Down
2 changes: 1 addition & 1 deletion src/jambonz_sdk/schema/components/llm-base.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"vendor": {
"type": "string",
"description": "The LLM vendor to use.",
"examples": ["openai", "anthropic", "google", "groq", "deepseek", "deepgram", "ultravox", "custom"]
"examples": ["openai", "anthropic", "google", "groq", "deepseek", "baseten", "deepgram", "ultravox", "custom"]
},
"model": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
"type": "string",
"description": "ID of a Google Speech recognizer resource (v2 only)."
},
"parentPath": {
"type": "string",
"description": "Parent resource path for the Google Speech recognizer (v2 only), e.g. 'projects/{project}/locations/{location}'."
},
"speechStartTimeoutMs": {
"type": "number",
"description": "Timeout in milliseconds to wait for speech to start."
Expand Down
1 change: 1 addition & 0 deletions src/jambonz_sdk/schema/verbs/agent.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
"vertex-openai",
"bedrock",
"deepseek",
"baseten",
"azure-openai",
"groq",
"huggingface"
Expand Down
Loading