This commit is contained in:
f 2025-02-04 21:10:45 +00:00
parent 8b4cbf2047
commit 293727a95f
1 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,7 @@
{"@context":"https://schema.org","@type":"WebSite","description":"This repo includes ChatGPT prompt curation to use ChatGPT and other LLM tools better.","headline":"Awesome ChatGPT Prompts","name":"Awesome ChatGPT Prompts","url":"/"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/css/style.css?v=160b06f9d00839d51236c6c3abae51cf6b6d40d4">
<link rel="stylesheet" href="/assets/css/style.css?v=15fa2c01f0d5208f6a9fcee5ca4cd433eca8d998">
<style>
:root {
--bg-color-light: #ffffff;
@ -1117,6 +1117,7 @@
<div class="site-description">
<p class="platform-hint">Choose your AI platform</p>
<div class="platform-pills">
<button class="platform-tag" data-platform="github-copilot" data-url="https://github.com/copilot">ChatGPT</button>
<button class="platform-tag" data-platform="chatgpt" data-url="https://chat.openai.com">ChatGPT</button>
<button class="platform-tag" data-platform="claude" data-url="https://claude.ai/new">Claude</button>
<button class="platform-tag" data-platform="perplexity" data-url="https://perplexity.ai">Perplexity</button>
@ -3295,6 +3296,9 @@ Split the outline into part 1 and part 2.</p>
let url;
switch (platform.dataset.platform) {
case 'github-copilot':
url = `${baseUrl}?prompt=${encodeURIComponent(promptText)}`;
break;
case 'chatgpt':
url = `${baseUrl}?prompt=${encodeURIComponent(promptText)}`;
break;