请提供上面代码的完整html代码
时间: 2023-08-12 14:05:41 浏览: 170
很抱歉,我之前的回答有误。由于上面的代码是纯文本,无法直接用于 HTML 页面的展示。如果您需要在 HTML 页面中展示代码,可以使用 `<pre>` 标签将代码包裹起来,或者使用代码高亮插件等工具进行展示。以下是一个示例:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>示例</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<pre><code class="python">
import openai
import requests
openai.api_key = "YOUR_API_KEY"
def generate_text(prompt):
response = openai.Completion.create(
engine="davinci",
prompt=prompt,
temperature=0.5,
max_tokens=1024,
top_p=1,
frequency_penalty=0,
presence_penalty=0
)
return response.choices[0].text.strip()
url = "http://localhost:5005/webhooks/rest/webhook"
while True:
message = input("User: ")
payload = {"sender": "user", "message": message}
response = requests.post(url, json=payload).json()
for r in response:
bot_message = r.get("text")
if bot_message:
prompt = f"{message}\nBot: {bot_message}\nUser:"
bot_response = generate_text(prompt)
print(f"Bot: {bot_response}")
else:
print("No bot response.")
</code></pre>
</body>
</html>
```
注意,这里只是一个简单的示例,实际上您需要根据您的具体需求进行调整。另外,为了使代码高亮生效,需要引入 highlight.js 库并在页面加载时调用 `hljs.initHighlightingOnLoad()` 方法。
阅读全文