Based on the information provided in the extracts, there isn't a direct parameter in the Assistant API that disables the appearance of these links to the reference. However, there is a workaround suggested by a support user in the OpenAI community forum. The user suggests using a regular expression (regex) to strip out the source citations from the response message. Here's the code snippet provided:
import re
message_text = ("This is a sample text【9†source】 with source "
"tags using annotations【10†source】and some other content.")
cleaned_text = re.sub('【.*?†source】', '', message_text)
This code will remove any text that matches the pattern 【.*?†source】, which is the pattern used for source citations in the response message.
You can find more details in the OpenAI community forum post (https://community.openai.com/t/599121).
Please note that this method requires you to 'clean' the response message in your code. As of now, there isn't a built-in parameter in the Assistant API that can do this for you.
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: