chore: bump pipecat version and fix tests (#263)

* chore: bump pipecat version and fix tests

* chore: add github workflow to run tests

* fix: install reqirements.dev.txt in test script

* fix: fix api-test action

* feat: add integration test

* test: add integration tests

* test: add test for function call mute strategy
This commit is contained in:
Abhishek 2026-05-04 21:35:37 +05:30 committed by GitHub
parent d256c6005c
commit 0e12c41fc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
76 changed files with 1776 additions and 670 deletions

View file

@ -12,6 +12,10 @@
* Production: `<backend>/api/v1/public/agent/<trigger_path>` runs the published agent. Use this from production systems.
* Test: `<backend>/api/v1/public/agent/test/<trigger_path>` runs the latest draft, useful for verifying changes before publishing. Falls back to the published agent when no draft exists.
* Both require an API key in the `X-API-Key` header.
* Request body fields:
* `phone_number` (string, required) destination to dial.
* `initial_context` (object, optional) merged into the run's initial context.
* `telephony_configuration_id` (int, optional) pick a specific telephony configuration for the call. Must belong to the same organization as the trigger. When omitted, the org's default outbound configuration is used.
*/
export interface Trigger {
type: "trigger";