Gary Stewart Greetings!
I'm glad that your issue is resolved and thank you for posting your solution so that others experiencing the same thing can easily reference this!
Since the Microsoft Q&A community has a policy that the question author cannot accept their own answer, they can only accept answers by others, I'll repost your solution in case you'd like to Accept the answer.
Error Message:
When we connect via api to our Azure OpenIA deployments, we get generic chat GPT rather than our data we have loaded, as per the chat interface provided by microsoft. The code we used was:
curl "https://nexus-openai-dev.openai.azure.com/openai/deployments/api-nexus-fish/chat/completions?api-version=2023-10-01-preview" \ -H "Content-Type: application/json" \ -H "api-key: xxxxxxOurKey" \ -d "{ "messages": [{"role":"system","content":"You are an AI assistant that helps people find information."},{"role":"user","content":"when can I catch ormers"}], "max_tokens": 100, "temperature": 1, "frequency_penalty": 0, "presence_penalty": 0, "top_p": 0.5, "stop": null }"
Solution:
Have solved the problem, found the extra config settings in the sample code in chat plaground. Where you point to the index.
If you have any other questions, please let me know. Thank you again for your time and patience throughout this issue.