Spaces:
Sleeping
Sleeping
File size: 8,324 Bytes
f28e771 |
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mistral Chat Test Bed</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
}
/* System Prompt Section */
#systemPromptSection {
margin-bottom: 20px;
padding: 10px;
background: #f8f9fa;
border-radius: 4px;
}
textarea {
width: 100%;
height: 150px;
margin: 10px 0;
padding: 8px;
font-family: monospace;
}
/* Chat Section */
#chatHistory {
max-height: 400px;
overflow-y: auto;
margin: 20px 0;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
.chat-message {
padding: 10px;
margin: 5px 0;
border-radius: 4px;
}
.user-message {
background: #e3f2fd;
}
.assistant-message {
background: #f5f5f5;
white-space: pre-wrap;
}
/* Raw JSON Section */
.raw-json {
font-family: monospace;
font-size: 0.9em;
color: #666;
margin-top: 5px;
padding: 5px;
background: #f8f9fa;
border-left: 3px solid #007bff;
}
/* Controls */
#controls {
display: flex;
gap: 10px;
margin: 20px 0;
}
input[type="text"] {
flex: 1;
padding: 8px;
}
button {
padding: 8px 16px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background: #0056b3;
}
/* Display Options */
.display-options {
margin: 10px 0;
padding: 10px;
background: #f8f9fa;
border-radius: 4px;
}
</style>
</head>
<body>
<h1>Mistral Chat Test Bed</h1>
<div id="systemPromptSection">
<h3>System Prompt</h3>
<textarea id="systemPrompt">You are the game master of "Get Me Out!", a single-player text-based survival game. The scenario: a player must guide their girlfriend to safety via text messages while she's being hunted by a murderous clown in their apartment. The player has access to security cameras and can give instructions through text.
Current state:
- Room: Main Bathroom
- Hiding: false
- Inventory: empty
RESPONSE FORMAT:
You must ALWAYS respond with a JSON object. The response should reflect the girlfriend's reaction to the player's message.
1. For movement instructions ("go" action):
{
"action": "go",
"to": "[room name]",
"textMessage": "[girlfriend's response]"
}
2. For any other input or unclear instructions:
{
"textMessage": "[girlfriend's response]"
}
VALID ROOMS:
Only these rooms are recognized for movement:
Main Bathroom
Guest Toilet
Dining Room
Kitchen
TV Room
Living Room
Hallway
Office
Bedroom
CHARACTER BEHAVIOR:
The girlfriend is aware of the danger and extremely distressed. Her text responses should be:
- Brief and urgent
- Reflect genuine fear and panic
- Written like real text messages (short, quick responses)
- No time for pleasantries or long explanations
- May include typos or rushed writing due to stress</textarea>
</div>
<div class="display-options">
<label>
<input type="checkbox" id="showRawJson" checked>
Show Raw JSON Response
</label>
</div>
<div id="chatHistory"></div>
<div id="controls">
<input type="text" id="userInput" placeholder="Type your message...">
<button onclick="sendMessage()">Send</button>
</div>
<div id="apiKeySection">
<h3>API Key</h3>
<input type="password" id="apiKey" placeholder="Enter Mistral API Key">
<button onclick="saveApiKey()">Save API Key</button>
</div>
<script>
let apiKey = localStorage.getItem('mistralApiKey');
if (apiKey) {
document.getElementById('apiKey').value = apiKey;
}
function saveApiKey() {
const key = document.getElementById('apiKey').value.trim();
if (key) {
apiKey = key;
localStorage.setItem('mistralApiKey', key);
alert('API key saved!');
}
}
function addMessage(role, content, rawJson = null) {
const chatHistory = document.getElementById('chatHistory');
const messageDiv = document.createElement('div');
messageDiv.className = `chat-message ${role}-message`;
messageDiv.textContent = content;
if (rawJson && document.getElementById('showRawJson').checked) {
const jsonDiv = document.createElement('div');
jsonDiv.className = 'raw-json';
jsonDiv.textContent = JSON.stringify(rawJson, null, 2);
messageDiv.appendChild(jsonDiv);
}
chatHistory.appendChild(messageDiv);
chatHistory.scrollTop = chatHistory.scrollHeight;
}
async function sendMessage() {
const userInput = document.getElementById('userInput');
const message = userInput.value.trim();
if (!message) return;
if (!apiKey) {
alert('Please enter your Mistral API key first');
return;
}
// Add user message to chat
addMessage('user', message);
userInput.value = '';
try {
const response = await fetch('https://api.mistral.ai/v1/chat/completions', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${apiKey}`
},
body: JSON.stringify({
model: 'mistral-large-latest',
messages: [
{
role: 'system',
content: document.getElementById('systemPrompt').value
},
{
role: 'user',
content: message
}
]
})
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
const assistantResponse = data.choices[0].message.content;
try {
// Extract JSON from response
const jsonStart = assistantResponse.indexOf('{');
const jsonEnd = assistantResponse.lastIndexOf('}') + 1;
const jsonContent = assistantResponse.substring(jsonStart, jsonEnd);
const jsonResponse = JSON.parse(jsonContent);
// Add assistant message with both text and raw JSON
addMessage('assistant', jsonResponse.textMessage, jsonResponse);
} catch (e) {
console.error('Error parsing JSON from response:', e);
addMessage('assistant', assistantResponse);
}
} catch (error) {
addMessage('assistant', `Error: ${error.message}`);
}
}
// Allow sending message with Enter key
document.getElementById('userInput').addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
e.preventDefault();
sendMessage();
}
});
</script>
</body>
</html> |