Compare commits
9 Commits
cb/elevenl
...
mb/update-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
708ef71c96 | ||
|
|
241ab19228 | ||
|
|
c08e8ec8fb | ||
|
|
eb9bc9644e | ||
|
|
3a306dae90 | ||
|
|
c42cc8254f | ||
|
|
a8e21f7d5d | ||
|
|
c6ef8de578 | ||
|
|
fc571fba42 |
70
.github/workflows/python-compatibility.yaml
vendored
70
.github/workflows/python-compatibility.yaml
vendored
@@ -9,14 +9,14 @@ on:
|
|||||||
paths: ['pyproject.toml']
|
paths: ['pyproject.toml']
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-compatibility:
|
test-dev-environment:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ['3.10.18', '3.11.13', '3.12.11', '3.13.5']
|
python-version: ['3.10.18', '3.11.13', '3.12.11', '3.13.5']
|
||||||
|
|
||||||
name: Python ${{ matrix.python-version }}
|
name: Dev Environment - Python ${{ matrix.python-version }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -55,7 +55,69 @@ jobs:
|
|||||||
--no-extra moondream \
|
--no-extra moondream \
|
||||||
--no-extra mlx-whisper
|
--no-extra mlx-whisper
|
||||||
|
|
||||||
- name: Verify installation
|
- name: Verify dev installation
|
||||||
run: |
|
run: |
|
||||||
uv run python --version
|
uv run python --version
|
||||||
uv run python -c "import pipecat; print('✅ Pipecat imports successfully')"
|
uv run python -c "import pipecat; print('✅ Dev environment - Pipecat imports successfully')"
|
||||||
|
|
||||||
|
test-user-experience:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
python-version: ['3.10.18', '3.11.13', '3.12.11', '3.13.5']
|
||||||
|
|
||||||
|
name: User Experience - Python ${{ matrix.python-version }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install system dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y \
|
||||||
|
portaudio19-dev \
|
||||||
|
libcairo2-dev \
|
||||||
|
libgirepository1.0-dev \
|
||||||
|
pkg-config
|
||||||
|
|
||||||
|
- name: Install uv
|
||||||
|
uses: astral-sh/setup-uv@v4
|
||||||
|
with:
|
||||||
|
version: 'latest'
|
||||||
|
|
||||||
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
run: |
|
||||||
|
uv python install ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
- name: Build local package
|
||||||
|
run: |
|
||||||
|
uv build
|
||||||
|
|
||||||
|
- name: Create test project
|
||||||
|
run: |
|
||||||
|
mkdir test-project
|
||||||
|
cd test-project
|
||||||
|
uv init --python ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
- name: Test comprehensive extras with uv add (Python 3.10-3.12)
|
||||||
|
if: "!startsWith(matrix.python-version, '3.13.')"
|
||||||
|
run: |
|
||||||
|
cd test-project
|
||||||
|
# Use uv add with built wheel to leverage dependency management
|
||||||
|
uv add "../dist/pipecat_ai-"*".whl[anthropic,assemblyai,asyncai,aws,aws-nova-sonic,azure,cartesia,cerebras,deepseek,daily,deepgram,elevenlabs,fal,fireworks,fish,gladia,google,grok,groq,gstreamer,heygen,inworld,koala,langchain,livekit,lmnt,local,mcp,mem0,mlx-whisper,moondream,nim,neuphonic,noisereduce,openai,openpipe,openrouter,perplexity,playht,qwen,rime,riva,runner,sambanova,sentry,local-smart-turn,remote-smart-turn,silero,simli,soniox,soundfile,speechmatics,tavus,together,tracing,ultravox,webrtc,websocket,whisper]"
|
||||||
|
|
||||||
|
- name: Test Python 3.13 compatible extras with uv add
|
||||||
|
if: startsWith(matrix.python-version, '3.13.')
|
||||||
|
run: |
|
||||||
|
cd test-project
|
||||||
|
# Use uv add with built wheel and Python 3.13 compatible extras
|
||||||
|
uv add "../dist/pipecat_ai-"*".whl[anthropic,assemblyai,asyncai,aws,aws-nova-sonic,azure,cartesia,cerebras,deepseek,daily,deepgram,elevenlabs,fal,fireworks,fish,gladia,google,grok,groq,gstreamer,heygen,inworld,koala,langchain,livekit,lmnt,local,mcp,mem0,nim,neuphonic,noisereduce,openai,openpipe,openrouter,perplexity,playht,qwen,rime,riva,runner,sambanova,sentry,remote-smart-turn,silero,simli,soniox,soundfile,speechmatics,tavus,together,tracing,webrtc,websocket,whisper]"
|
||||||
|
|
||||||
|
- name: Verify user installation
|
||||||
|
run: |
|
||||||
|
cd test-project
|
||||||
|
uv run python --version
|
||||||
|
uv run python -c "import pipecat; print('✅ User experience - Pipecat imports successfully')"
|
||||||
|
# Test that basic functionality works
|
||||||
|
uv run python -c "from pipecat.pipeline.pipeline import Pipeline; print('✅ Pipeline import works')"
|
||||||
|
|||||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -5,6 +5,19 @@ All notable changes to **Pipecat** will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Updated `pyproject.toml` to once again pin `numba` to `>=0.61.2` in order to
|
||||||
|
resolve package versioning issues.
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- Updated `15-switch-voices.py` and `15a-switch-languages.py` examples to show
|
||||||
|
how to enclose complex logic (e.g. `ParallelPipeline`) into a single processor
|
||||||
|
so the main pipeline becomes simpler.
|
||||||
|
|
||||||
## [0.0.79] - 2025-08-07
|
## [0.0.79] - 2025-08-07
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
23
README.md
23
README.md
@@ -128,7 +128,7 @@ You can get started with Pipecat running on your local machine, then move your a
|
|||||||
2. Install development and testing dependencies:
|
2. Install development and testing dependencies:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
uv sync --group dev --all-extras --no-extra krisp
|
uv sync --group dev --all-extras --no-extra gstreamer --no-extra krisp --no-extra local
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Install the git pre-commit hooks:
|
3. Install the git pre-commit hooks:
|
||||||
@@ -137,18 +137,25 @@ You can get started with Pipecat running on your local machine, then move your a
|
|||||||
uv run pre-commit install
|
uv run pre-commit install
|
||||||
```
|
```
|
||||||
|
|
||||||
### Python 3.13+ Note
|
### Python 3.13+ Compatibility
|
||||||
|
|
||||||
Some features require PyTorch (not yet available on Python 3.13+):
|
Some features require PyTorch, which doesn't yet support Python 3.13+. Install using:
|
||||||
|
|
||||||
- `ultravox`, `local-smart-turn`, `moondream`, `mlx-whisper`
|
|
||||||
|
|
||||||
**For full compatibility:** Use Python 3.12
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
uv python pin 3.12 && uv sync --group dev --all-extras --no-extra krisp
|
uv sync --group dev --all-extras \
|
||||||
|
--no-extra gstreamer \
|
||||||
|
--no-extra krisp \
|
||||||
|
--no-extra local \
|
||||||
|
--no-extra local-smart-turn \
|
||||||
|
--no-extra mlx-whisper \
|
||||||
|
--no-extra moondream \
|
||||||
|
--no-extra ultravox
|
||||||
```
|
```
|
||||||
|
|
||||||
|
> **Tip:** For full compatibility, use Python 3.12: `uv python pin 3.12`
|
||||||
|
|
||||||
|
> **Note**: Some extras (local, gstreamer) require system dependencies. See documentation if you encounter build errors.
|
||||||
|
|
||||||
### Running tests
|
### Running tests
|
||||||
|
|
||||||
To run all tests, from the root directory:
|
To run all tests, from the root directory:
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ from loguru import logger
|
|||||||
from openai.types.chat import ChatCompletionToolParam
|
from openai.types.chat import ChatCompletionToolParam
|
||||||
|
|
||||||
from pipecat.audio.vad.silero import SileroVADAnalyzer
|
from pipecat.audio.vad.silero import SileroVADAnalyzer
|
||||||
|
from pipecat.frames.frames import Frame
|
||||||
from pipecat.pipeline.parallel_pipeline import ParallelPipeline
|
from pipecat.pipeline.parallel_pipeline import ParallelPipeline
|
||||||
from pipecat.pipeline.pipeline import Pipeline
|
from pipecat.pipeline.pipeline import Pipeline
|
||||||
from pipecat.pipeline.runner import PipelineRunner
|
from pipecat.pipeline.runner import PipelineRunner
|
||||||
@@ -31,29 +32,54 @@ from pipecat.transports.services.daily import DailyParams
|
|||||||
load_dotenv(override=True)
|
load_dotenv(override=True)
|
||||||
|
|
||||||
|
|
||||||
current_voice = "News Lady"
|
class SwitchVoices(ParallelPipeline):
|
||||||
|
def __init__(self):
|
||||||
|
self._current_voice = "News Lady"
|
||||||
|
|
||||||
|
news_lady = CartesiaTTSService(
|
||||||
|
api_key=os.getenv("CARTESIA_API_KEY"),
|
||||||
|
voice_id="bf991597-6c13-47e4-8411-91ec2de5c466", # Newslady
|
||||||
|
)
|
||||||
|
|
||||||
async def switch_voice(params: FunctionCallParams):
|
british_lady = CartesiaTTSService(
|
||||||
global current_voice
|
api_key=os.getenv("CARTESIA_API_KEY"),
|
||||||
current_voice = params.arguments["voice"]
|
voice_id="71a7ad14-091c-4e8e-a314-022ece01c121", # British Reading Lady
|
||||||
await params.result_callback(
|
)
|
||||||
{
|
|
||||||
"voice": f"You are now using your {current_voice} voice. Your responses should now be as if you were a {current_voice}."
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
|
barbershop_man = CartesiaTTSService(
|
||||||
|
api_key=os.getenv("CARTESIA_API_KEY"),
|
||||||
|
voice_id="a0e99841-438c-4a64-b679-ae501e7d6091", # Barbershop Man
|
||||||
|
)
|
||||||
|
|
||||||
async def news_lady_filter(frame) -> bool:
|
super().__init__(
|
||||||
return current_voice == "News Lady"
|
# News Lady voice
|
||||||
|
[FunctionFilter(self.news_lady_filter), news_lady],
|
||||||
|
# British Reading Lady voice
|
||||||
|
[FunctionFilter(self.british_lady_filter), british_lady],
|
||||||
|
# Barbershop Man voice
|
||||||
|
[FunctionFilter(self.barbershop_man_filter), barbershop_man],
|
||||||
|
)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def current_voice(self):
|
||||||
|
return self._current_voice
|
||||||
|
|
||||||
async def british_lady_filter(frame) -> bool:
|
async def switch_voice(self, params: FunctionCallParams):
|
||||||
return current_voice == "British Lady"
|
self._current_voice = params.arguments["voice"]
|
||||||
|
await params.result_callback(
|
||||||
|
{
|
||||||
|
"voice": f"You are now using your {self.current_voice} voice. Your responses should now be as if you were a {self.current_voice}."
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
async def news_lady_filter(self, _: Frame) -> bool:
|
||||||
|
return self.current_voice == "News Lady"
|
||||||
|
|
||||||
async def barbershop_man_filter(frame) -> bool:
|
async def british_lady_filter(self, _: Frame) -> bool:
|
||||||
return current_voice == "Barbershop Man"
|
return self.current_voice == "British Lady"
|
||||||
|
|
||||||
|
async def barbershop_man_filter(self, _: Frame) -> bool:
|
||||||
|
return self.current_voice == "Barbershop Man"
|
||||||
|
|
||||||
|
|
||||||
# We store functions so objects (e.g. SileroVADAnalyzer) don't get
|
# We store functions so objects (e.g. SileroVADAnalyzer) don't get
|
||||||
@@ -83,23 +109,10 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
|
|||||||
|
|
||||||
stt = DeepgramSTTService(api_key=os.getenv("DEEPGRAM_API_KEY"))
|
stt = DeepgramSTTService(api_key=os.getenv("DEEPGRAM_API_KEY"))
|
||||||
|
|
||||||
news_lady = CartesiaTTSService(
|
tts = SwitchVoices()
|
||||||
api_key=os.getenv("CARTESIA_API_KEY"),
|
|
||||||
voice_id="bf991597-6c13-47e4-8411-91ec2de5c466", # Newslady
|
|
||||||
)
|
|
||||||
|
|
||||||
british_lady = CartesiaTTSService(
|
|
||||||
api_key=os.getenv("CARTESIA_API_KEY"),
|
|
||||||
voice_id="71a7ad14-091c-4e8e-a314-022ece01c121", # British Reading Lady
|
|
||||||
)
|
|
||||||
|
|
||||||
barbershop_man = CartesiaTTSService(
|
|
||||||
api_key=os.getenv("CARTESIA_API_KEY"),
|
|
||||||
voice_id="a0e99841-438c-4a64-b679-ae501e7d6091", # Barbershop Man
|
|
||||||
)
|
|
||||||
|
|
||||||
llm = OpenAILLMService(api_key=os.getenv("OPENAI_API_KEY"))
|
llm = OpenAILLMService(api_key=os.getenv("OPENAI_API_KEY"))
|
||||||
llm.register_function("switch_voice", switch_voice)
|
llm.register_function("switch_voice", tts.switch_voice)
|
||||||
|
|
||||||
tools = [
|
tools = [
|
||||||
ChatCompletionToolParam(
|
ChatCompletionToolParam(
|
||||||
@@ -136,14 +149,7 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
|
|||||||
stt,
|
stt,
|
||||||
context_aggregator.user(), # User responses
|
context_aggregator.user(), # User responses
|
||||||
llm, # LLM
|
llm, # LLM
|
||||||
ParallelPipeline( # TTS (one of the following vocies)
|
tts, # TTS with switch voice functionality
|
||||||
[FunctionFilter(news_lady_filter), news_lady], # News Lady voice
|
|
||||||
[
|
|
||||||
FunctionFilter(british_lady_filter),
|
|
||||||
british_lady,
|
|
||||||
], # British Reading Lady voice
|
|
||||||
[FunctionFilter(barbershop_man_filter), barbershop_man], # Barbershop Man voice
|
|
||||||
),
|
|
||||||
transport.output(), # Transport bot output
|
transport.output(), # Transport bot output
|
||||||
context_aggregator.assistant(), # Assistant spoken responses
|
context_aggregator.assistant(), # Assistant spoken responses
|
||||||
]
|
]
|
||||||
@@ -165,7 +171,7 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
|
|||||||
messages.append(
|
messages.append(
|
||||||
{
|
{
|
||||||
"role": "system",
|
"role": "system",
|
||||||
"content": f"Please introduce yourself to the user and let them know the voices you can do. Your initial responses should be as if you were a {current_voice}.",
|
"content": f"Please introduce yourself to the user and let them know the voices you can do. Your initial responses should be as if you were a {tts.current_voice}.",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
await task.queue_frames([context_aggregator.user().get_context_frame()])
|
await task.queue_frames([context_aggregator.user().get_context_frame()])
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ from loguru import logger
|
|||||||
from openai.types.chat import ChatCompletionToolParam
|
from openai.types.chat import ChatCompletionToolParam
|
||||||
|
|
||||||
from pipecat.audio.vad.silero import SileroVADAnalyzer
|
from pipecat.audio.vad.silero import SileroVADAnalyzer
|
||||||
|
from pipecat.frames.frames import Frame
|
||||||
from pipecat.pipeline.parallel_pipeline import ParallelPipeline
|
from pipecat.pipeline.parallel_pipeline import ParallelPipeline
|
||||||
from pipecat.pipeline.pipeline import Pipeline
|
from pipecat.pipeline.pipeline import Pipeline
|
||||||
from pipecat.pipeline.runner import PipelineRunner
|
from pipecat.pipeline.runner import PipelineRunner
|
||||||
@@ -32,23 +33,42 @@ from pipecat.transports.services.daily import DailyParams
|
|||||||
load_dotenv(override=True)
|
load_dotenv(override=True)
|
||||||
|
|
||||||
|
|
||||||
current_language = "English"
|
class SwitchLanguage(ParallelPipeline):
|
||||||
|
def __init__(self):
|
||||||
|
self._current_language = "English"
|
||||||
|
|
||||||
|
english_tts = CartesiaTTSService(
|
||||||
|
api_key=os.getenv("CARTESIA_API_KEY"),
|
||||||
|
voice_id="71a7ad14-091c-4e8e-a314-022ece01c121", # British Reading Lady
|
||||||
|
)
|
||||||
|
|
||||||
async def switch_language(params: FunctionCallParams):
|
spanish_tts = CartesiaTTSService(
|
||||||
global current_language
|
api_key=os.getenv("CARTESIA_API_KEY"),
|
||||||
current_language = params.arguments["language"]
|
voice_id="d4db5fb9-f44b-4bd1-85fa-192e0f0d75f9", # Spanish-speaking Lady
|
||||||
await params.result_callback(
|
)
|
||||||
{"voice": f"Your answers from now on should be in {current_language}."}
|
|
||||||
)
|
|
||||||
|
|
||||||
|
super().__init__(
|
||||||
|
# English
|
||||||
|
[FunctionFilter(self.english_filter), english_tts],
|
||||||
|
# Spanish
|
||||||
|
[FunctionFilter(self.spanish_filter), spanish_tts],
|
||||||
|
)
|
||||||
|
|
||||||
async def english_filter(frame) -> bool:
|
@property
|
||||||
return current_language == "English"
|
def current_language(self):
|
||||||
|
return self._current_language
|
||||||
|
|
||||||
|
async def switch_language(self, params: FunctionCallParams):
|
||||||
|
self._current_language = params.arguments["language"]
|
||||||
|
await params.result_callback(
|
||||||
|
{"voice": f"Your answers from now on should be in {self.current_language}."}
|
||||||
|
)
|
||||||
|
|
||||||
async def spanish_filter(frame) -> bool:
|
async def english_filter(self, _: Frame) -> bool:
|
||||||
return current_language == "Spanish"
|
return self.current_language == "English"
|
||||||
|
|
||||||
|
async def spanish_filter(self, _: Frame) -> bool:
|
||||||
|
return self.current_language == "Spanish"
|
||||||
|
|
||||||
|
|
||||||
# We store functions so objects (e.g. SileroVADAnalyzer) don't get
|
# We store functions so objects (e.g. SileroVADAnalyzer) don't get
|
||||||
@@ -80,18 +100,10 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
|
|||||||
api_key=os.getenv("DEEPGRAM_API_KEY"), live_options=LiveOptions(language="multi")
|
api_key=os.getenv("DEEPGRAM_API_KEY"), live_options=LiveOptions(language="multi")
|
||||||
)
|
)
|
||||||
|
|
||||||
english_tts = CartesiaTTSService(
|
tts = SwitchLanguage()
|
||||||
api_key=os.getenv("CARTESIA_API_KEY"),
|
|
||||||
voice_id="71a7ad14-091c-4e8e-a314-022ece01c121", # British Reading Lady
|
|
||||||
)
|
|
||||||
|
|
||||||
spanish_tts = CartesiaTTSService(
|
|
||||||
api_key=os.getenv("CARTESIA_API_KEY"),
|
|
||||||
voice_id="d4db5fb9-f44b-4bd1-85fa-192e0f0d75f9", # Spanish-speaking Lady
|
|
||||||
)
|
|
||||||
|
|
||||||
llm = OpenAILLMService(api_key=os.getenv("OPENAI_API_KEY"))
|
llm = OpenAILLMService(api_key=os.getenv("OPENAI_API_KEY"))
|
||||||
llm.register_function("switch_language", switch_language)
|
llm.register_function("switch_language", tts.switch_language)
|
||||||
|
|
||||||
tools = [
|
tools = [
|
||||||
ChatCompletionToolParam(
|
ChatCompletionToolParam(
|
||||||
@@ -128,10 +140,7 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
|
|||||||
stt, # STT
|
stt, # STT
|
||||||
context_aggregator.user(), # User responses
|
context_aggregator.user(), # User responses
|
||||||
llm, # LLM
|
llm, # LLM
|
||||||
ParallelPipeline( # TTS (bot will speak the chosen language)
|
tts, # TTS (bot will speak the chosen language)
|
||||||
[FunctionFilter(english_filter), english_tts], # English
|
|
||||||
[FunctionFilter(spanish_filter), spanish_tts], # Spanish
|
|
||||||
),
|
|
||||||
transport.output(), # Transport bot output
|
transport.output(), # Transport bot output
|
||||||
context_aggregator.assistant(), # Assistant spoken responses
|
context_aggregator.assistant(), # Assistant spoken responses
|
||||||
]
|
]
|
||||||
@@ -153,7 +162,7 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
|
|||||||
messages.append(
|
messages.append(
|
||||||
{
|
{
|
||||||
"role": "system",
|
"role": "system",
|
||||||
"content": f"Please introduce yourself to the user and let them know the languages you speak. Your initial responses should be in {current_language}.",
|
"content": f"Please introduce yourself to the user and let them know the languages you speak. Your initial responses should be in {tts.current_language}.",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
await task.queue_frames([context_aggregator.user().get_context_frame()])
|
await task.queue_frames([context_aggregator.user().get_context_frame()])
|
||||||
|
|||||||
@@ -34,6 +34,8 @@ dependencies = [
|
|||||||
"resampy~=0.4.3",
|
"resampy~=0.4.3",
|
||||||
"soxr~=0.5.0",
|
"soxr~=0.5.0",
|
||||||
"openai>=1.74.0,<=1.99.1",
|
"openai>=1.74.0,<=1.99.1",
|
||||||
|
# Pinning numba (resampy dep) to resolve a package dependency
|
||||||
|
"numba==0.61.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ TESTS_14 = [
|
|||||||
("14p-function-calling-gemini-vertex-ai.py", PROMPT_WEATHER, EVAL_WEATHER),
|
("14p-function-calling-gemini-vertex-ai.py", PROMPT_WEATHER, EVAL_WEATHER),
|
||||||
("14q-function-calling-qwen.py", PROMPT_WEATHER, EVAL_WEATHER),
|
("14q-function-calling-qwen.py", PROMPT_WEATHER, EVAL_WEATHER),
|
||||||
("14r-function-calling-aws.py", PROMPT_WEATHER, EVAL_WEATHER),
|
("14r-function-calling-aws.py", PROMPT_WEATHER, EVAL_WEATHER),
|
||||||
("14v-function-calling-openai.py.py", PROMPT_WEATHER, EVAL_WEATHER),
|
("14v-function-calling-openai.py", PROMPT_WEATHER, EVAL_WEATHER),
|
||||||
# Currently not working.
|
# Currently not working.
|
||||||
# ("14c-function-calling-together.py", PROMPT_WEATHER, EVAL_WEATHER),
|
# ("14c-function-calling-together.py", PROMPT_WEATHER, EVAL_WEATHER),
|
||||||
# ("14k-function-calling-cerebras.py", PROMPT_WEATHER, EVAL_WEATHER),
|
# ("14k-function-calling-cerebras.py", PROMPT_WEATHER, EVAL_WEATHER),
|
||||||
|
|||||||
Reference in New Issue
Block a user