Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
jhakulin committed Dec 25, 2024
1 parent 744cfd9 commit e4f6e94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ class MyRealtimeEventHandler(RealtimeAIEventHandler):
# Define RealtimeAIOptions for OpenAI Realtime service configuration
options = RealtimeAIOptions(
api_key=api_key,
model="gpt-4o-realtime-preview-2024-10-01",
model="gpt-4o-realtime-preview",
modalities=["audio", "text"],
instructions="You are a helpful assistant. Respond concisely.",
turn_detection=None, # or server vad
tools=functions.definitions,
tool_choice="auto",
temperature=0.8,
max_output_tokens=None,
max_output_tokens=1000,
voice="sage",
enable_auto_reconnect=True,
)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
https://github.com/jhakulin/realtime-ai/releases/download/v0.1.6/realtime_ai-0.1.6-py3-none-any.whl
https://github.com/jhakulin/realtime-ai/releases/download/v0.1.7/realtime_ai-0.1.7-py3-none-any.whl
pyaudio
numpy
websockets
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="realtime-ai",
version="0.1.6",
version="0.1.7",
description="Python SDK for real-time audio processing with OpenAI's Realtime REST API.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit e4f6e94

Please sign in to comment.