Add changelog updates for 2025-03-06 #243
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New Query Tool and Vapi Voice Provider, Updates to Language Support and Error Handling
- The API now supports a new query tool that allows assistants to search through knowledge bases. Add this tool to any assistant model by configuring it at
- You can now link knowledge bases to query tools, providing structured information sources for assistants to access. Define knowledge bases with a name, model, provider, description, and associated file IDs.
```json { "type": "query", "async": false, "server": { "url": "https://api.example.com/query-handler" }, "function": { "name": "query_knowledge", "description": "Query knowledge bases for information", "parameters": { "type": "object", "properties": { "query": { "type": "string", "description": "The query to search for" } }, "required": ["query"] } }, "knowledgeBases": [ { "name": "Product Documentation", "model": "gemini-1.5-flash", "provider": "google", "description": "Contains all product manuals", "fileIds": ["file-123", "file-456"] } ] } ```assistant.model.tools[type=query]path.A new voice provider "vapi" has been added with support for a voice called "Jordan" in
FallbackVapiVoice. Configure it in our assistant fallback plans atassistant.voice.fallbackPlan.voices.Myanmar language ("my") has been added to supported languages, while "jp" and "mymr" codes have been removed. Use "ja" for Japanese language and "my" for Myanmar. Reference
GladiaTranscriberfor more language codes.Added new error code
pipeline-error-11labs-transcriber-failedforServerMessageStatusUpdate.endedReasonandServerMessageEndOfCallReport.endedReason. Also added an explicitfailedstatus for test suite runs inTestSuiteRun. These additions provide more detailed error reporting.The model
gpt-4o-2024-08-06-ptuhas been removed from Azure OpenAI credential schemas. Update any credential configurations that were using this model.