|
| 1 | +import os |
| 2 | +import argparse |
| 3 | +import azure.cognitiveservices.speech as speechsdk |
| 4 | +from openai import AzureOpenAI |
| 5 | + |
| 6 | +# Initialize speech recognition engine |
| 7 | +service_region = os.environ.get('SPEECH_REGION') |
| 8 | +speech_key = os.environ.get('SPEECH_KEY') |
| 9 | +speech_config = speechsdk.SpeechConfig(subscription=speech_key, region=service_region) |
| 10 | +speech_recognizer = speechsdk.SpeechRecognizer(speech_config=speech_config, language="en-us") |
| 11 | + |
| 12 | +# Initialize Azure OpenAI client |
| 13 | +client = AzureOpenAI( |
| 14 | + azure_endpoint=os.environ.get('AZURE_OPENAI_ENDPOINT'), |
| 15 | + api_key=os.environ.get('AZURE_OPENAI_API_KEY'), |
| 16 | + api_version="2024-10-21" |
| 17 | +) |
| 18 | + |
| 19 | +# Parse command-line arguments |
| 20 | +parser = argparse.ArgumentParser(description="Run app.py with custom parameters.") |
| 21 | +parser.add_argument( |
| 22 | + "--relevant_phrases", |
| 23 | + type=str, |
| 24 | + default="Azure Cognitive Services, non-profit organization, speech recognition, OpenAI API", |
| 25 | + help="Comma-separated relevant phrases for text rewriting." |
| 26 | +) |
| 27 | +args = parser.parse_args() |
| 28 | + |
| 29 | +# Use user-provided or default relevant_phrases |
| 30 | +relevant_phrases = args.relevant_phrases |
| 31 | + |
| 32 | +def rewrite_content(input_reco): |
| 33 | + """ |
| 34 | + Refines the user's input sentence by fixing grammar issues, making it more readable, |
| 35 | + and ensuring spelling correctness for specific phrases. |
| 36 | +
|
| 37 | + Args: |
| 38 | + input_reco (str): The raw input sentence to rewrite. |
| 39 | +
|
| 40 | + Returns: |
| 41 | + str: The refined sentence. |
| 42 | + """ |
| 43 | + |
| 44 | + # A list of phrases relevant to the context, used to ensure their correct spelling and formatting. |
| 45 | + # Users can customize these phrases based on their specific use case or domain. |
| 46 | + relevant_phrases = args.relevant_phrases |
| 47 | + |
| 48 | + my_messages = [ |
| 49 | + { |
| 50 | + "role": "system", |
| 51 | + "content": ( |
| 52 | + "You are a helpful assistant to help the user rewrite sentences. " |
| 53 | + "Please fix the grammar errors in the user-provided sentence and make it more readable. " |
| 54 | + "You can do minor rewriting but MUST NOT change the sentence's meaning. " |
| 55 | + "DO NOT make up new content. DO NOT answer questions. " |
| 56 | + "Here are phrases relevant to the sentences: '{}'. " |
| 57 | + "If they appear in the sentence and are misspelled, please fix them. " |
| 58 | + "Example corrections:\n" |
| 59 | + "User: how ar you\nYour response: How are you?\n\n" |
| 60 | + "User: what yur name?\nYour response: What's your name?\n\n" |
| 61 | + ).format(relevant_phrases) |
| 62 | + }, |
| 63 | + {"role": "user", "content": input_reco} |
| 64 | + ] |
| 65 | + |
| 66 | + response = client.chat.completions.create( |
| 67 | + model="gpt-4o-mini", |
| 68 | + messages=my_messages |
| 69 | + ) |
| 70 | + |
| 71 | + return response.choices[0].message.content |
| 72 | + |
| 73 | +def recognized_cb(evt: speechsdk.SpeechRecognitionEventArgs): |
| 74 | + """ |
| 75 | + Callback function triggered when speech is recognized. |
| 76 | +
|
| 77 | + Args: |
| 78 | + evt (SpeechRecognitionEventArgs): The event argument containing recognized text. |
| 79 | + """ |
| 80 | + current_sentence = evt.result.text |
| 81 | + if not current_sentence: |
| 82 | + return |
| 83 | + |
| 84 | + print("RAW RECO:", current_sentence) |
| 85 | + print("REWRITE:", rewrite_content(current_sentence)) |
| 86 | + |
| 87 | +# Connect the speech recognizer to the callback |
| 88 | +speech_recognizer.recognized.connect(recognized_cb) |
| 89 | +result_future = speech_recognizer.start_continuous_recognition_async() |
| 90 | +result_future.get() # Ensure engine initialization is complete |
| 91 | + |
| 92 | +print('Continuous Recognition is now running. Say something.') |
| 93 | +while True: |
| 94 | + print('Type "stop" then press Enter to stop recognition.') |
| 95 | + stop = input() |
| 96 | + if stop.lower() == "stop": |
| 97 | + print('Stopping async recognition...') |
| 98 | + speech_recognizer.stop_continuous_recognition_async() |
| 99 | + break |
0 commit comments