1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
---
name: Basic Prompt
description: A basic prompt that uses the GPT-3 chat API to answer questions
authors:
- author_1
- author_2
model:
api: chat
configuration:
azure_deployment: gpt-4o-mini
parameters:
temperature: 1
frequency_penalty: 0.5
presence_penalty: 0.5
---
system:
You are an AI assistant in a hotel. You help guests with their requests and provide information about the hotel and its services.
# context
{{#rules}}
{{rule}}
{{/rules}}
{{#chat_history}}
{{role}}:
{{content}}
{{/chat_history}}
user:
{{input}}
|