Skip to content

Commit

Permalink
Revert "fix: fix dependencies"
Browse files Browse the repository at this point in the history
This reverts commit f6769a2.
  • Loading branch information
plutoless committed Dec 27, 2024
1 parent f6769a2 commit f9881cd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 40 deletions.
52 changes: 18 additions & 34 deletions agents/examples/default/property.json
Original file line number Diff line number Diff line change
Expand Up @@ -506,27 +506,24 @@
"subscribe_audio": true,
"publish_audio": true,
"publish_data": true,
"subscribe_audio_sample_rate": 24000,
"subscribe_video_pix_fmt": 4,
"subscribe_video": true
"subscribe_audio_sample_rate": 24000
}
},
{
"type": "extension",
"name": "v2v",
"addon": "gemini_v2v_python",
"addon": "openai_v2v_python",
"extension_group": "llm",
"property": {
"api_key": "${env:GEMINI_API_KEY}",
"api_version": "v1alpha",
"base_uri": "generativelanguage.googleapis.com",
"dump": true,
"language": "en-US",
"api_key": "${env:OPENAI_REALTIME_API_KEY}",
"temperature": 0.9,
"model": "gpt-4o-realtime-preview",
"max_tokens": 2048,
"model": "gemini-2.0-flash-exp",
"voice": "alloy",
"language": "en-US",
"server_vad": true,
"temperature": 0.9,
"voice": "Puck"
"dump": true,
"max_history": 10
}
},
{
Expand All @@ -549,35 +546,35 @@
"connections": [
{
"extension": "agora_rtc",
"cmd": [
"audio_frame": [
{
"name": "on_user_joined",
"name": "pcm_frame",
"dest": [
{
"extension": "v2v"
}
]
},
}
],
"cmd": [
{
"name": "on_user_left",
"name": "on_user_joined",
"dest": [
{
"extension": "v2v"
}
]
},
{
"name": "on_connection_failure",
"name": "on_user_left",
"dest": [
{
"extension": "v2v"
}
]
}
],
"audio_frame": [
},
{
"name": "pcm_frame",
"name": "on_connection_failure",
"dest": [
{
"extension": "v2v"
Expand Down Expand Up @@ -652,19 +649,6 @@
]
}
]
},
{
"extension": "agora_rtc",
"video_frame": [
{
"name": "video_frame",
"dest": [
{
"extension": "v2v"
}
]
}
]
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions agents/examples/demo/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
{
"type": "extension",
"name": "agora_rtc",
"version": "=0.10.1"
"version": "=0.10.0-rc3"
},
{
"type": "extension",
"name": "agora_sess_ctrl",
"version": "=0.4.1"
"version": "=0.4.0-rc1"
},
{
"type": "system",
Expand All @@ -31,7 +31,7 @@
{
"type": "extension",
"name": "azure_tts",
"version": "=0.7.1"
"version": "=0.7.0"
},
{
"type": "extension",
Expand Down
6 changes: 3 additions & 3 deletions agents/examples/experimental/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
{
"type": "extension",
"name": "agora_rtc",
"version": "=0.10.1"
"version": "=0.10.0-rc3"
},
{
"type": "extension",
"name": "agora_sess_ctrl",
"version": "=0.4.1"
"version": "=0.4.0-rc1"
},
{
"type": "system",
Expand All @@ -31,7 +31,7 @@
{
"type": "extension",
"name": "azure_tts",
"version": "=0.7.1"
"version": "=0.7.0"
},
{
"type": "extension",
Expand Down

0 comments on commit f9881cd

Please sign in to comment.