forked from open-webui/open-webui
		
	feat: custom prompt support
This commit is contained in:
		
							parent
							
								
									ae9ad35023
								
							
						
					
					
						commit
						22c210e8f6
					
				
					 9 changed files with 1368 additions and 172 deletions
				
			
		|  | @ -12,7 +12,7 @@ from apps.web.internal.db import DB | |||
| import json | ||||
| 
 | ||||
| #################### | ||||
| # User DB Schema | ||||
| # Modelfile DB Schema | ||||
| #################### | ||||
| 
 | ||||
| 
 | ||||
|  |  | |||
							
								
								
									
										117
									
								
								backend/apps/web/models/prompts.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										117
									
								
								backend/apps/web/models/prompts.py
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,117 @@ | |||
| from pydantic import BaseModel | ||||
| from peewee import * | ||||
| from playhouse.shortcuts import model_to_dict | ||||
| from typing import List, Union, Optional | ||||
| import time | ||||
| 
 | ||||
| from utils.utils import decode_token | ||||
| from utils.misc import get_gravatar_url | ||||
| 
 | ||||
| from apps.web.internal.db import DB | ||||
| 
 | ||||
| import json | ||||
| 
 | ||||
| #################### | ||||
| # Prompts DB Schema | ||||
| #################### | ||||
| 
 | ||||
| 
 | ||||
| class Prompt(Model): | ||||
|     command = CharField(unique=True) | ||||
|     user_id = CharField() | ||||
|     title = CharField() | ||||
|     content = TextField() | ||||
|     timestamp = DateField() | ||||
| 
 | ||||
|     class Meta: | ||||
|         database = DB | ||||
| 
 | ||||
| 
 | ||||
| class PromptModel(BaseModel): | ||||
|     command: str | ||||
|     user_id: str | ||||
|     title: str | ||||
|     content: str | ||||
|     timestamp: int  # timestamp in epoch | ||||
| 
 | ||||
| 
 | ||||
| #################### | ||||
| # Forms | ||||
| #################### | ||||
| 
 | ||||
| 
 | ||||
| class PromptForm(BaseModel): | ||||
|     command: str | ||||
|     title: str | ||||
|     content: str | ||||
| 
 | ||||
| 
 | ||||
| class PromptsTable: | ||||
|     def __init__(self, db): | ||||
|         self.db = db | ||||
|         self.db.create_tables([Prompt]) | ||||
| 
 | ||||
|     def insert_new_prompt( | ||||
|         self, user_id: str, form_data: PromptForm | ||||
|     ) -> Optional[PromptModel]: | ||||
|         prompt = PromptModel( | ||||
|             **{ | ||||
|                 "user_id": user_id, | ||||
|                 "command": form_data.command, | ||||
|                 "title": form_data.title, | ||||
|                 "content": form_data.content, | ||||
|                 "timestamp": int(time.time()), | ||||
|             } | ||||
|         ) | ||||
| 
 | ||||
|         try: | ||||
|             result = Prompt.create(**prompt.model_dump()) | ||||
|             if result: | ||||
|                 return prompt | ||||
|             else: | ||||
|                 return None | ||||
|         except: | ||||
|             return None | ||||
| 
 | ||||
|     def get_prompt_by_command(self, command: str) -> Optional[PromptModel]: | ||||
|         try: | ||||
|             prompt = Prompt.get(Prompt.command == command) | ||||
|             return PromptModel(**model_to_dict(prompt)) | ||||
|         except: | ||||
|             return None | ||||
| 
 | ||||
|     def get_prompts(self) -> List[PromptModel]: | ||||
|         return [ | ||||
|             PromptModel(**model_to_dict(prompt)) | ||||
|             for prompt in Prompt.select() | ||||
|             # .limit(limit).offset(skip) | ||||
|         ] | ||||
| 
 | ||||
|     def update_prompt_by_command( | ||||
|         self, command: str, form_data: PromptForm | ||||
|     ) -> Optional[PromptModel]: | ||||
|         try: | ||||
|             query = Prompt.update( | ||||
|                 title=form_data.title, | ||||
|                 content=form_data.content, | ||||
|                 timestamp=int(time.time()), | ||||
|             ).where(Prompt.command == command) | ||||
| 
 | ||||
|             query.execute() | ||||
| 
 | ||||
|             prompt = Prompt.get(Prompt.command == command) | ||||
|             return PromptModel(**model_to_dict(prompt)) | ||||
|         except: | ||||
|             return None | ||||
| 
 | ||||
|     def delete_prompt_by_command(self, command: str) -> bool: | ||||
|         try: | ||||
|             query = Prompt.delete().where((Prompt.command == command)) | ||||
|             query.execute()  # Remove the rows, return number of rows removed. | ||||
| 
 | ||||
|             return True | ||||
|         except: | ||||
|             return False | ||||
| 
 | ||||
| 
 | ||||
| Prompts = PromptsTable(DB) | ||||
|  | @ -1,158 +1,13 @@ | |||
| <script lang="ts"> | ||||
| 	import { prompts } from '$lib/stores'; | ||||
| 	import { findWordIndices } from '$lib/utils'; | ||||
| 	import { tick } from 'svelte'; | ||||
| 
 | ||||
| 	export let prompt = ''; | ||||
| 
 | ||||
| 	let selectedCommandIdx = 0; | ||||
| 
 | ||||
| 	let promptCommands = [ | ||||
| 		{ | ||||
| 			command: '/article', | ||||
| 			title: 'Article Generator', | ||||
| 			content: `Write an article about [topic] | ||||
| 
 | ||||
| include relevant statistics (add the links of the sources you use) and consider diverse perspectives. Write it in a [X_tone] and mention the source links in the end.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/backlink', | ||||
| 
 | ||||
| 			title: 'Backlink Outreach Email', | ||||
| 			content: `Write a link-exchange outreach email on behalf of [your name] from [your_company] to ask for a backlink from their [website_url] to [your website url].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/faq', | ||||
| 
 | ||||
| 			title: 'FAQ Generator', | ||||
| 			content: `Create a list of [10] frequently asked questions about [keyword] and provide answers for each one of them considering the SERP and rich result guidelines.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/headline', | ||||
| 
 | ||||
| 			title: 'Headline Generator', | ||||
| 			content: `Generate 10 attention-grabbing headlines for an article about [your topic]` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/product', | ||||
| 
 | ||||
| 			title: 'Product Description', | ||||
| 			content: `Craft an irresistible product description that highlights the benefits of [your product]` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/seo', | ||||
| 
 | ||||
| 			title: 'SEO Content Brief', | ||||
| 			content: `Create a SEO content brief for [keyword].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/seo-ideas', | ||||
| 
 | ||||
| 			title: 'SEO Keyword Ideas', | ||||
| 			content: `Generate a list of 20 keyword ideas on [topic]. | ||||
| 
 | ||||
| Cluster this list of keywords according to funnel stages whether they are top of the funnel, middle of the funnel or bottom of the funnel keywords.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/summary', | ||||
| 
 | ||||
| 			title: 'Short Summary', | ||||
| 			content: `Write a summary in 50 words that summarizes [topic or keyword].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/email-subject', | ||||
| 
 | ||||
| 			title: 'Email Subject Line', | ||||
| 			content: `Develop [5] subject lines for a cold email offering your [product or service] to a potential client.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/facebook-ads', | ||||
| 
 | ||||
| 			title: 'Facebook Ads', | ||||
| 			content: `Create 3 variations of effective ad copy to promote [product] for [audience]. | ||||
| 
 | ||||
| Make sure they are [persuasive/playful/emotional] and mention these benefits: | ||||
| 
 | ||||
| [Benefit 1] | ||||
| 
 | ||||
| [Benefit 2] | ||||
| 
 | ||||
| [Benefit 3] | ||||
| 
 | ||||
| Finish with a call to action saying [CTA]. | ||||
| 
 | ||||
| Add 3 emojis to it.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/google-ads', | ||||
| 
 | ||||
| 			title: 'Google Ads', | ||||
| 			content: `Create 10 google ads (a headline and a description) for [product description] targeting the keyword [keyword]. | ||||
| 
 | ||||
| The headline of the ad needs to be under 30 characters. The description needs to be under 90 characters. Format the output as a table.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/insta-caption', | ||||
| 
 | ||||
| 			title: 'Instagram Caption', | ||||
| 			content: `Write 5 variations of Instagram captions for [product]. | ||||
| 
 | ||||
| Use friendly, human-like language that appeals to [target audience]. | ||||
| 
 | ||||
| Emphasize the unique qualities of [product], | ||||
| 
 | ||||
| use ample emojis, and don't sound too promotional.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/linkedin-post', | ||||
| 
 | ||||
| 			title: 'LinkedIn Post', | ||||
| 			content: `Create a narrative Linkedin post using immersive writing about [topic]. | ||||
| 
 | ||||
| Details: | ||||
| 
 | ||||
| [give details in bullet point format] | ||||
| 
 | ||||
| Use a mix of short and long sentences. Make it punchy and dramatic.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/youtube-desc', | ||||
| 
 | ||||
| 			title: 'YouTube Video', | ||||
| 			content: `Write a 100-word YouTube video description that compels [audience] | ||||
| 
 | ||||
| to watch a video on [topic] | ||||
| 
 | ||||
| and mentions the following keywords | ||||
| 
 | ||||
| [keyword 1] | ||||
| 
 | ||||
| [keyword 2] | ||||
| 
 | ||||
| [keyword 3].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/seo-meta', | ||||
| 
 | ||||
| 			title: 'SEO Meta', | ||||
| 			content: `Suggest a meta description for the content above, make it user-friendly and with a call to action, include the keyword [keyword].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/eli5', | ||||
| 
 | ||||
| 			title: 'ELI5', | ||||
| 			content: `You are an expert teacher with the ability to explain complex topics in simpler terms. Explain the concept of [topic] in simple terms, so that my [grade level/subject] class can understand [this concept/specific example]?` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/emoji-translate', | ||||
| 
 | ||||
| 			title: 'Emoji Translation', | ||||
| 			content: `You are an emoji expert. Using only emojis, translate the following text to emojis. [insert numbered sentences].` | ||||
| 		} | ||||
| 	]; | ||||
| 
 | ||||
| 	let filteredPromptCommands = []; | ||||
| 
 | ||||
| 	$: filteredPromptCommands = promptCommands | ||||
| 	$: filteredPromptCommands = $prompts | ||||
| 		.filter((p) => p.command.includes(prompt)) | ||||
| 		.sort((a, b) => a.title.localeCompare(b.title)); | ||||
| 
 | ||||
|  | @ -197,30 +52,57 @@ and mentions the following keywords | |||
| 			<div class=" bg-gray-100 dark:bg-gray-700 w-10 rounded-l-lg text-center"> | ||||
| 				<div class=" text-lg font-medium mt-2">/</div> | ||||
| 			</div> | ||||
| 			<div class=" max-h-60 overflow-y-auto bg-white w-full p-2 rounded-r-lg space-y-0.5"> | ||||
| 				{#each filteredPromptCommands as command, commandIdx} | ||||
| 					<button | ||||
| 						class=" px-3 py-1.5 rounded-lg w-full text-left {commandIdx === selectedCommandIdx | ||||
| 							? ' bg-gray-100 selected-command-option-button' | ||||
| 							: ''}" | ||||
| 						type="button" | ||||
| 						on:click={() => { | ||||
| 							confirmCommand(command); | ||||
| 						}} | ||||
| 						on:mousemove={() => { | ||||
| 							selectedCommandIdx = commandIdx; | ||||
| 						}} | ||||
| 						on:focus={() => {}} | ||||
| 					> | ||||
| 						<div class=" font-medium text-black"> | ||||
| 							{command.command} | ||||
| 						</div> | ||||
| 
 | ||||
| 						<div class=" text-xs text-gray-600"> | ||||
| 							{command.title} | ||||
| 						</div> | ||||
| 					</button> | ||||
| 				{/each} | ||||
| 			<div class="max-h-60 flex flex-col w-full"> | ||||
| 				<div class=" overflow-y-auto bg-white p-2 rounded-r-lg space-y-0.5"> | ||||
| 					{#each filteredPromptCommands as command, commandIdx} | ||||
| 						<button | ||||
| 							class=" px-3 py-1.5 rounded-lg w-full text-left {commandIdx === selectedCommandIdx | ||||
| 								? ' bg-gray-100 selected-command-option-button' | ||||
| 								: ''}" | ||||
| 							type="button" | ||||
| 							on:click={() => { | ||||
| 								confirmCommand(command); | ||||
| 							}} | ||||
| 							on:mousemove={() => { | ||||
| 								selectedCommandIdx = commandIdx; | ||||
| 							}} | ||||
| 							on:focus={() => {}} | ||||
| 						> | ||||
| 							<div class=" font-medium text-black"> | ||||
| 								{command.command} | ||||
| 							</div> | ||||
| 
 | ||||
| 							<div class=" text-xs text-gray-600"> | ||||
| 								{command.title} | ||||
| 							</div> | ||||
| 						</button> | ||||
| 					{/each} | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class=" px-2 py-0.5 text-xs text-gray-600 flex items-center space-x-1"> | ||||
| 					<div> | ||||
| 						<svg | ||||
| 							xmlns="http://www.w3.org/2000/svg" | ||||
| 							fill="none" | ||||
| 							viewBox="0 0 24 24" | ||||
| 							stroke-width="1.5" | ||||
| 							stroke="currentColor" | ||||
| 							class="w-3 h-3" | ||||
| 						> | ||||
| 							<path | ||||
| 								stroke-linecap="round" | ||||
| 								stroke-linejoin="round" | ||||
| 								d="m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z" | ||||
| 							/> | ||||
| 						</svg> | ||||
| 					</div> | ||||
| 
 | ||||
| 					<div class="line-clamp-1"> | ||||
| 						Tip: Update multiple prompt variables by pressing the tab key in the chat input | ||||
| 						consecutively after each replacement. | ||||
| 					</div> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 		</div> | ||||
| 	</div> | ||||
|  |  | |||
|  | @ -100,7 +100,7 @@ | |||
| 		</div> | ||||
| 
 | ||||
| 		{#if $user?.role === 'admin'} | ||||
| 			<div class="px-2.5 flex justify-center my-1"> | ||||
| 			<div class="px-2.5 flex justify-center mt-1"> | ||||
| 				<button | ||||
| 					class="flex-grow flex space-x-3 rounded-md px-3 py-2 hover:bg-gray-900 transition" | ||||
| 					on:click={async () => { | ||||
|  | @ -129,6 +129,34 @@ | |||
| 					</div> | ||||
| 				</button> | ||||
| 			</div> | ||||
| 
 | ||||
| 			<div class="px-2.5 flex justify-center mb-1"> | ||||
| 				<button | ||||
| 					class="flex-grow flex space-x-3 rounded-md px-3 py-2 hover:bg-gray-900 transition" | ||||
| 					on:click={async () => { | ||||
| 						goto('/prompts'); | ||||
| 					}} | ||||
| 				> | ||||
| 					<div class="self-center"> | ||||
| 						<svg | ||||
| 							xmlns="http://www.w3.org/2000/svg" | ||||
| 							viewBox="0 0 16 16" | ||||
| 							fill="currentColor" | ||||
| 							class="w-4 h-4" | ||||
| 						> | ||||
| 							<path | ||||
| 								fill-rule="evenodd" | ||||
| 								d="M11.013 2.513a1.75 1.75 0 0 1 2.475 2.474L6.226 12.25a2.751 2.751 0 0 1-.892.596l-2.047.848a.75.75 0 0 1-.98-.98l.848-2.047a2.75 2.75 0 0 1 .596-.892l7.262-7.261Z" | ||||
| 								clip-rule="evenodd" | ||||
| 							/> | ||||
| 						</svg> | ||||
| 					</div> | ||||
| 
 | ||||
| 					<div class="flex self-center"> | ||||
| 						<div class=" self-center font-medium text-sm">Prompts</div> | ||||
| 					</div> | ||||
| 				</button> | ||||
| 			</div> | ||||
| 		{/if} | ||||
| 
 | ||||
| 		<div class="px-2.5 mt-1 mb-2 flex justify-center space-x-2"> | ||||
|  |  | |||
|  | @ -6,10 +6,13 @@ export const user = writable(undefined); | |||
| 
 | ||||
| // Frontend
 | ||||
| export const theme = writable('dark'); | ||||
| 
 | ||||
| export const chatId = writable(''); | ||||
| 
 | ||||
| export const chats = writable([]); | ||||
| export const models = writable([]); | ||||
| export const modelfiles = writable([]); | ||||
| export const prompts = writable([]); | ||||
| 
 | ||||
| export const settings = writable({}); | ||||
| export const showSettings = writable(false); | ||||
|  |  | |||
|  | @ -254,6 +254,32 @@ | |||
| 							</svg> | ||||
| 						</div> | ||||
| 					</button> | ||||
| 
 | ||||
| 					<button | ||||
| 						class="self-center w-fit text-sm px-3 py-1 border dark:border-gray-600 rounded-xl flex" | ||||
| 						on:click={async () => { | ||||
| 							// document.getElementById('modelfiles-import-input')?.click(); | ||||
| 
 | ||||
| 							saveModelfiles($modelfiles); | ||||
| 						}} | ||||
| 					> | ||||
| 						<div class=" self-center mr-2 font-medium">Export Modelfiles</div> | ||||
| 
 | ||||
| 						<div class=" self-center"> | ||||
| 							<svg | ||||
| 								xmlns="http://www.w3.org/2000/svg" | ||||
| 								viewBox="0 0 16 16" | ||||
| 								fill="currentColor" | ||||
| 								class="w-3.5 h-3.5" | ||||
| 							> | ||||
| 								<path | ||||
| 									fill-rule="evenodd" | ||||
| 									d="M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4 3.5a.75.75 0 0 1 .75.75v2.69l.72-.72a.75.75 0 1 1 1.06 1.06l-2 2a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 0 1 1.06-1.06l.72.72V6.25A.75.75 0 0 1 8 5.5Z" | ||||
| 									clip-rule="evenodd" | ||||
| 								/> | ||||
| 							</svg> | ||||
| 						</div> | ||||
| 					</button> | ||||
| 				</div> | ||||
| 
 | ||||
| 				{#if localModelfiles.length > 0} | ||||
|  |  | |||
							
								
								
									
										396
									
								
								src/routes/(app)/prompts/+page.svelte
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										396
									
								
								src/routes/(app)/prompts/+page.svelte
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,396 @@ | |||
| <script lang="ts"> | ||||
| 	import toast from 'svelte-french-toast'; | ||||
| 	import fileSaver from 'file-saver'; | ||||
| 	const { saveAs } = fileSaver; | ||||
| 
 | ||||
| 	import { onMount } from 'svelte'; | ||||
| 	import { prompts } from '$lib/stores'; | ||||
| 
 | ||||
| 	let query = ''; | ||||
| 
 | ||||
| 	let defaultPrompts = [ | ||||
| 		{ | ||||
| 			command: '/article', | ||||
| 			title: 'Article Generator', | ||||
| 			content: `Write an article about [topic] | ||||
| 
 | ||||
| include relevant statistics (add the links of the sources you use) and consider diverse perspectives. Write it in a [X_tone] and mention the source links in the end.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/backlink', | ||||
| 
 | ||||
| 			title: 'Backlink Outreach Email', | ||||
| 			content: `Write a link-exchange outreach email on behalf of [your name] from [your_company] to ask for a backlink from their [website_url] to [your website url].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/faq', | ||||
| 
 | ||||
| 			title: 'FAQ Generator', | ||||
| 			content: `Create a list of [10] frequently asked questions about [keyword] and provide answers for each one of them considering the SERP and rich result guidelines.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/headline', | ||||
| 
 | ||||
| 			title: 'Headline Generator', | ||||
| 			content: `Generate 10 attention-grabbing headlines for an article about [your topic]` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/product', | ||||
| 
 | ||||
| 			title: 'Product Description', | ||||
| 			content: `Craft an irresistible product description that highlights the benefits of [your product]` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/seo', | ||||
| 
 | ||||
| 			title: 'SEO Content Brief', | ||||
| 			content: `Create a SEO content brief for [keyword].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/seo-ideas', | ||||
| 
 | ||||
| 			title: 'SEO Keyword Ideas', | ||||
| 			content: `Generate a list of 20 keyword ideas on [topic]. | ||||
| 
 | ||||
| Cluster this list of keywords according to funnel stages whether they are top of the funnel, middle of the funnel or bottom of the funnel keywords.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/summary', | ||||
| 
 | ||||
| 			title: 'Short Summary', | ||||
| 			content: `Write a summary in 50 words that summarizes [topic or keyword].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/email-subject', | ||||
| 
 | ||||
| 			title: 'Email Subject Line', | ||||
| 			content: `Develop [5] subject lines for a cold email offering your [product or service] to a potential client.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/facebook-ads', | ||||
| 
 | ||||
| 			title: 'Facebook Ads', | ||||
| 			content: `Create 3 variations of effective ad copy to promote [product] for [audience]. | ||||
| 
 | ||||
| Make sure they are [persuasive/playful/emotional] and mention these benefits: | ||||
| 
 | ||||
| [Benefit 1] | ||||
| 
 | ||||
| [Benefit 2] | ||||
| 
 | ||||
| [Benefit 3] | ||||
| 
 | ||||
| Finish with a call to action saying [CTA]. | ||||
| 
 | ||||
| Add 3 emojis to it.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/google-ads', | ||||
| 
 | ||||
| 			title: 'Google Ads', | ||||
| 			content: `Create 10 google ads (a headline and a description) for [product description] targeting the keyword [keyword]. | ||||
| 
 | ||||
| The headline of the ad needs to be under 30 characters. The description needs to be under 90 characters. Format the output as a table.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/insta-caption', | ||||
| 
 | ||||
| 			title: 'Instagram Caption', | ||||
| 			content: `Write 5 variations of Instagram captions for [product]. | ||||
| 
 | ||||
| Use friendly, human-like language that appeals to [target audience]. | ||||
| 
 | ||||
| Emphasize the unique qualities of [product], | ||||
| 
 | ||||
| use ample emojis, and don't sound too promotional.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/linkedin-post', | ||||
| 
 | ||||
| 			title: 'LinkedIn Post', | ||||
| 			content: `Create a narrative Linkedin post using immersive writing about [topic]. | ||||
| 
 | ||||
| Details: | ||||
| 
 | ||||
| [give details in bullet point format] | ||||
| 
 | ||||
| Use a mix of short and long sentences. Make it punchy and dramatic.` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/youtube-desc', | ||||
| 
 | ||||
| 			title: 'YouTube Video', | ||||
| 			content: `Write a 100-word YouTube video description that compels [audience] | ||||
| 
 | ||||
| to watch a video on [topic] | ||||
| 
 | ||||
| and mentions the following keywords | ||||
| 
 | ||||
| [keyword 1] | ||||
| 
 | ||||
| [keyword 2] | ||||
| 
 | ||||
| [keyword 3].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/seo-meta', | ||||
| 
 | ||||
| 			title: 'SEO Meta', | ||||
| 			content: `Suggest a meta description for the content above, make it user-friendly and with a call to action, include the keyword [keyword].` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/eli5', | ||||
| 
 | ||||
| 			title: 'ELI5', | ||||
| 			content: `You are an expert teacher with the ability to explain complex topics in simpler terms. Explain the concept of [topic] in simple terms, so that my [grade level/subject] class can understand [this concept/specific example]?` | ||||
| 		}, | ||||
| 		{ | ||||
| 			command: '/emoji-translate', | ||||
| 
 | ||||
| 			title: 'Emoji Translation', | ||||
| 			content: `You are an emoji expert. Using only emojis, translate the following text to emojis. [insert numbered sentences].` | ||||
| 		} | ||||
| 	]; | ||||
| 
 | ||||
| 	const loadDefaultPrompts = () => { | ||||
| 		prompts.set(defaultPrompts); | ||||
| 	}; | ||||
| </script> | ||||
| 
 | ||||
| <div class="min-h-screen w-full flex justify-center dark:text-white"> | ||||
| 	<div class=" py-2.5 flex flex-col justify-between w-full"> | ||||
| 		<div class="max-w-2xl mx-auto w-full px-3 md:px-0 my-10"> | ||||
| 			<div class="mb-6 flex justify-between items-center"> | ||||
| 				<div class=" text-2xl font-semibold self-center">My Prompts</div> | ||||
| 			</div> | ||||
| 
 | ||||
| 			<div class=" flex w-full space-x-2"> | ||||
| 				<div class="flex flex-1"> | ||||
| 					<div class=" self-center ml-1 mr-3"> | ||||
| 						<svg | ||||
| 							xmlns="http://www.w3.org/2000/svg" | ||||
| 							viewBox="0 0 20 20" | ||||
| 							fill="currentColor" | ||||
| 							class="w-4 h-4" | ||||
| 						> | ||||
| 							<path | ||||
| 								fill-rule="evenodd" | ||||
| 								d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z" | ||||
| 								clip-rule="evenodd" | ||||
| 							/> | ||||
| 						</svg> | ||||
| 					</div> | ||||
| 					<input | ||||
| 						class=" w-full text-sm pr-4 py-1 rounded-r-xl outline-none bg-transparent" | ||||
| 						bind:value={query} | ||||
| 						placeholder="Search Prompt" | ||||
| 					/> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div> | ||||
| 					<a | ||||
| 						class=" px-2 py-2 rounded-xl border border-gray-200 dark:border-gray-600 hover:bg-gray-100 dark:bg-gray-800 dark:hover:bg-gray-700 transition font-medium text-sm flex items-center space-x-1" | ||||
| 						href="/prompts/create" | ||||
| 					> | ||||
| 						<svg | ||||
| 							xmlns="http://www.w3.org/2000/svg" | ||||
| 							viewBox="0 0 16 16" | ||||
| 							fill="currentColor" | ||||
| 							class="w-4 h-4" | ||||
| 						> | ||||
| 							<path | ||||
| 								d="M8.75 3.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5v-3.5Z" | ||||
| 							/> | ||||
| 						</svg> | ||||
| 					</a> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 
 | ||||
| 			{#if $prompts.length === 0} | ||||
| 				<div /> | ||||
| 			{:else} | ||||
| 				{#each $prompts.filter((p) => query === '' || p.command.includes(query)) as prompt} | ||||
| 					<hr class=" dark:border-gray-700 my-2.5" /> | ||||
| 					<div class=" flex space-x-4 cursor-pointer w-full mb-3"> | ||||
| 						<div class=" flex flex-1 space-x-4 cursor-pointer w-full"> | ||||
| 							<div class=" flex-1 self-center"> | ||||
| 								<div class=" font-bold">{prompt.command}</div> | ||||
| 								<div class=" text-sm overflow-hidden text-ellipsis line-clamp-1"> | ||||
| 									{prompt.title} | ||||
| 								</div> | ||||
| 							</div> | ||||
| 						</div> | ||||
| 						<div class="flex flex-row space-x-1 self-center"> | ||||
| 							<a | ||||
| 								class="self-center w-fit text-sm px-2 py-2 border dark:border-gray-600 rounded-xl" | ||||
| 								type="button" | ||||
| 								href={`/prompts/edit?command=${encodeURIComponent(prompt.command)}`} | ||||
| 							> | ||||
| 								<svg | ||||
| 									xmlns="http://www.w3.org/2000/svg" | ||||
| 									fill="none" | ||||
| 									viewBox="0 0 24 24" | ||||
| 									stroke-width="1.5" | ||||
| 									stroke="currentColor" | ||||
| 									class="w-4 h-4" | ||||
| 								> | ||||
| 									<path | ||||
| 										stroke-linecap="round" | ||||
| 										stroke-linejoin="round" | ||||
| 										d="M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L6.832 19.82a4.5 4.5 0 01-1.897 1.13l-2.685.8.8-2.685a4.5 4.5 0 011.13-1.897L16.863 4.487zm0 0L19.5 7.125" | ||||
| 									/> | ||||
| 								</svg> | ||||
| 							</a> | ||||
| 
 | ||||
| 							<!-- <button | ||||
| 							class="self-center w-fit text-sm px-2 py-2 border dark:border-gray-600 rounded-xl" | ||||
| 							type="button" | ||||
| 							on:click={() => { | ||||
| 								shareModelfile(modelfile); | ||||
| 							}} | ||||
| 						> | ||||
| 							<svg | ||||
| 								xmlns="http://www.w3.org/2000/svg" | ||||
| 								fill="none" | ||||
| 								viewBox="0 0 24 24" | ||||
| 								stroke-width="1.5" | ||||
| 								stroke="currentColor" | ||||
| 								class="w-4 h-4" | ||||
| 							> | ||||
| 								<path | ||||
| 									stroke-linecap="round" | ||||
| 									stroke-linejoin="round" | ||||
| 									d="M7.217 10.907a2.25 2.25 0 100 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 103.935 2.186 2.25 2.25 0 00-3.935-2.186zm0-12.814a2.25 2.25 0 103.933-2.185 2.25 2.25 0 00-3.933 2.185z" | ||||
| 								/> | ||||
| 							</svg> | ||||
| 						</button> --> | ||||
| 
 | ||||
| 							<button | ||||
| 								class="self-center w-fit text-sm px-2 py-2 border dark:border-gray-600 rounded-xl" | ||||
| 								type="button" | ||||
| 								on:click={() => { | ||||
| 									// deleteModelfile(modelfile.tagName); | ||||
| 								}} | ||||
| 							> | ||||
| 								<svg | ||||
| 									xmlns="http://www.w3.org/2000/svg" | ||||
| 									fill="none" | ||||
| 									viewBox="0 0 24 24" | ||||
| 									stroke-width="1.5" | ||||
| 									stroke="currentColor" | ||||
| 									class="w-4 h-4" | ||||
| 								> | ||||
| 									<path | ||||
| 										stroke-linecap="round" | ||||
| 										stroke-linejoin="round" | ||||
| 										d="M14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 01-2.244 2.077H8.084a2.25 2.25 0 01-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 00-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 013.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 00-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 00-7.5 0" | ||||
| 									/> | ||||
| 								</svg> | ||||
| 							</button> | ||||
| 						</div> | ||||
| 					</div> | ||||
| 				{/each} | ||||
| 			{/if} | ||||
| 
 | ||||
| 			<hr class=" dark:border-gray-700 my-2.5" /> | ||||
| 
 | ||||
| 			<div class=" flex justify-between w-full mb-3"> | ||||
| 				<div class="flex space-x-2"> | ||||
| 					<!-- <button | ||||
| 						class="self-center w-fit text-sm px-3 py-1 border dark:border-gray-600 rounded-xl flex" | ||||
| 						on:click={async () => { | ||||
| 							// document.getElementById('modelfiles-import-input')?.click(); | ||||
| 						}} | ||||
| 					> | ||||
| 						<div class=" self-center mr-2 font-medium">Import Prompts</div> | ||||
| 
 | ||||
| 						<div class=" self-center"> | ||||
| 							<svg | ||||
| 								xmlns="http://www.w3.org/2000/svg" | ||||
| 								viewBox="0 0 16 16" | ||||
| 								fill="currentColor" | ||||
| 								class="w-4 h-4" | ||||
| 							> | ||||
| 								<path | ||||
| 									fill-rule="evenodd" | ||||
| 									d="M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4 9.5a.75.75 0 0 1-.75-.75V8.06l-.72.72a.75.75 0 0 1-1.06-1.06l2-2a.75.75 0 0 1 1.06 0l2 2a.75.75 0 1 1-1.06 1.06l-.72-.72v2.69a.75.75 0 0 1-.75.75Z" | ||||
| 									clip-rule="evenodd" | ||||
| 								/> | ||||
| 							</svg> | ||||
| 						</div> | ||||
| 					</button> --> | ||||
| 
 | ||||
| 					<button | ||||
| 						class="self-center w-fit text-sm px-3 py-1 border dark:border-gray-600 rounded-xl flex" | ||||
| 						on:click={async () => { | ||||
| 							// document.getElementById('modelfiles-import-input')?.click(); | ||||
| 							let blob = new Blob([JSON.stringify($prompts)], { | ||||
| 								type: 'application/json' | ||||
| 							}); | ||||
| 							saveAs(blob, `prompts-export-${Date.now()}.json`); | ||||
| 						}} | ||||
| 					> | ||||
| 						<div class=" self-center mr-2 font-medium">Export Prompts</div> | ||||
| 
 | ||||
| 						<div class=" self-center"> | ||||
| 							<svg | ||||
| 								xmlns="http://www.w3.org/2000/svg" | ||||
| 								viewBox="0 0 16 16" | ||||
| 								fill="currentColor" | ||||
| 								class="w-4 h-4" | ||||
| 							> | ||||
| 								<path | ||||
| 									fill-rule="evenodd" | ||||
| 									d="M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4 3.5a.75.75 0 0 1 .75.75v2.69l.72-.72a.75.75 0 1 1 1.06 1.06l-2 2a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 0 1 1.06-1.06l.72.72V6.25A.75.75 0 0 1 8 5.5Z" | ||||
| 									clip-rule="evenodd" | ||||
| 								/> | ||||
| 							</svg> | ||||
| 						</div> | ||||
| 					</button> | ||||
| 
 | ||||
| 					<!-- <button | ||||
| 						on:click={() => { | ||||
| 							loadDefaultPrompts(); | ||||
| 						}} | ||||
| 					> | ||||
| 						dd | ||||
| 					</button> --> | ||||
| 				</div> | ||||
| 			</div> | ||||
| 
 | ||||
| 			<div class=" my-16"> | ||||
| 				<div class=" text-2xl font-semibold mb-6">Made by OllamaHub Community</div> | ||||
| 
 | ||||
| 				<a | ||||
| 					class=" flex space-x-4 cursor-pointer w-full mb-3" | ||||
| 					href="https://ollamahub.com/" | ||||
| 					target="_blank" | ||||
| 				> | ||||
| 					<div class=" self-center w-10"> | ||||
| 						<div | ||||
| 							class="w-full h-10 flex justify-center rounded-full bg-transparent dark:bg-gray-700 border border-dashed border-gray-200" | ||||
| 						> | ||||
| 							<svg | ||||
| 								xmlns="http://www.w3.org/2000/svg" | ||||
| 								viewBox="0 0 24 24" | ||||
| 								fill="currentColor" | ||||
| 								class="w-6" | ||||
| 							> | ||||
| 								<path | ||||
| 									fill-rule="evenodd" | ||||
| 									d="M12 3.75a.75.75 0 01.75.75v6.75h6.75a.75.75 0 010 1.5h-6.75v6.75a.75.75 0 01-1.5 0v-6.75H4.5a.75.75 0 010-1.5h6.75V4.5a.75.75 0 01.75-.75z" | ||||
| 									clip-rule="evenodd" | ||||
| 								/> | ||||
| 							</svg> | ||||
| 						</div> | ||||
| 					</div> | ||||
| 
 | ||||
| 					<div class=" self-center"> | ||||
| 						<div class=" font-bold">Discover a prompt</div> | ||||
| 						<div class=" text-sm">Discover, download, and explore custom Prompts</div> | ||||
| 					</div> | ||||
| 				</a> | ||||
| 			</div> | ||||
| 		</div> | ||||
| 	</div> | ||||
| </div> | ||||
							
								
								
									
										224
									
								
								src/routes/(app)/prompts/create/+page.svelte
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										224
									
								
								src/routes/(app)/prompts/create/+page.svelte
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,224 @@ | |||
| <script> | ||||
| 	import Advanced from '$lib/components/chat/Settings/Advanced.svelte'; | ||||
| 	import { onMount, tick } from 'svelte'; | ||||
| 	import toast from 'svelte-french-toast'; | ||||
| 
 | ||||
| 	let loading = false; | ||||
| 
 | ||||
| 	// /////////// | ||||
| 	// Modelfile | ||||
| 	// /////////// | ||||
| 
 | ||||
| 	let title = ''; | ||||
| 	let command = ''; | ||||
| 	let content = ''; | ||||
| 
 | ||||
| 	$: command = title !== '' ? `${title.replace(/\s+/g, '-').toLowerCase()}` : ''; | ||||
| 
 | ||||
| 	const submitHandler = async () => { | ||||
| 		console.log(validateCommandString(command)); | ||||
| 		if (validateCommandString(command)) { | ||||
| 			console.log('valid'); | ||||
| 			console.log('submit'); | ||||
| 		} else { | ||||
| 			toast.error('Only alphanumeric characters and hyphens are allowed in the command string.'); | ||||
| 		} | ||||
| 	}; | ||||
| 
 | ||||
| 	const validateCommandString = (inputString) => { | ||||
| 		// Regular expression to match only alphanumeric characters and hyphen | ||||
| 		const regex = /^[a-zA-Z0-9-]+$/; | ||||
| 
 | ||||
| 		// Test the input string against the regular expression | ||||
| 		return regex.test(inputString); | ||||
| 	}; | ||||
| 
 | ||||
| 	onMount(() => { | ||||
| 		window.addEventListener('message', async (event) => { | ||||
| 			if ( | ||||
| 				!['https://ollamahub.com', 'https://www.ollamahub.com', 'http://localhost:5173'].includes( | ||||
| 					event.origin | ||||
| 				) | ||||
| 			) | ||||
| 				return; | ||||
| 			const modelfile = JSON.parse(event.data); | ||||
| 			console.log(modelfile); | ||||
| 
 | ||||
| 			imageUrl = modelfile.imageUrl; | ||||
| 			title = modelfile.title; | ||||
| 			await tick(); | ||||
| 			tagName = `${modelfile.user.username === 'hub' ? '' : `hub/`}${modelfile.user.username}/${ | ||||
| 				modelfile.tagName | ||||
| 			}`; | ||||
| 			desc = modelfile.desc; | ||||
| 			content = modelfile.content; | ||||
| 			suggestions = | ||||
| 				modelfile.suggestionPrompts.length != 0 | ||||
| 					? modelfile.suggestionPrompts | ||||
| 					: [ | ||||
| 							{ | ||||
| 								content: '' | ||||
| 							} | ||||
| 					  ]; | ||||
| 
 | ||||
| 			modelfileCreator = { | ||||
| 				username: modelfile.user.username, | ||||
| 				name: modelfile.user.name | ||||
| 			}; | ||||
| 			for (const category of modelfile.categories) { | ||||
| 				categories[category.toLowerCase()] = true; | ||||
| 			} | ||||
| 		}); | ||||
| 
 | ||||
| 		if (window.opener ?? false) { | ||||
| 			window.opener.postMessage('loaded', '*'); | ||||
| 		} | ||||
| 	}); | ||||
| </script> | ||||
| 
 | ||||
| <div class="min-h-screen w-full flex justify-center dark:text-white"> | ||||
| 	<div class=" py-2.5 flex flex-col justify-between w-full"> | ||||
| 		<div class="max-w-2xl mx-auto w-full px-3 md:px-0 my-10"> | ||||
| 			<div class=" text-2xl font-semibold mb-6">My Prompts</div> | ||||
| 
 | ||||
| 			<button | ||||
| 				class="flex space-x-1" | ||||
| 				on:click={() => { | ||||
| 					history.back(); | ||||
| 				}} | ||||
| 			> | ||||
| 				<div class=" self-center"> | ||||
| 					<svg | ||||
| 						xmlns="http://www.w3.org/2000/svg" | ||||
| 						viewBox="0 0 20 20" | ||||
| 						fill="currentColor" | ||||
| 						class="w-4 h-4" | ||||
| 					> | ||||
| 						<path | ||||
| 							fill-rule="evenodd" | ||||
| 							d="M17 10a.75.75 0 01-.75.75H5.612l4.158 3.96a.75.75 0 11-1.04 1.08l-5.5-5.25a.75.75 0 010-1.08l5.5-5.25a.75.75 0 111.04 1.08L5.612 9.25H16.25A.75.75 0 0117 10z" | ||||
| 							clip-rule="evenodd" | ||||
| 						/> | ||||
| 					</svg> | ||||
| 				</div> | ||||
| 				<div class=" self-center font-medium text-sm">Back</div> | ||||
| 			</button> | ||||
| 			<hr class="my-3 dark:border-gray-700" /> | ||||
| 
 | ||||
| 			<form | ||||
| 				class="flex flex-col" | ||||
| 				on:submit|preventDefault={() => { | ||||
| 					submitHandler(); | ||||
| 				}} | ||||
| 			> | ||||
| 				<div class="my-2"> | ||||
| 					<div class=" text-sm font-semibold mb-2">Title*</div> | ||||
| 
 | ||||
| 					<div> | ||||
| 						<input | ||||
| 							class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-lg" | ||||
| 							placeholder="Add a short title for this prompt" | ||||
| 							bind:value={title} | ||||
| 							required | ||||
| 						/> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class="my-2"> | ||||
| 					<div class=" text-sm font-semibold mb-2">Command*</div> | ||||
| 
 | ||||
| 					<div class="flex items-center mb-1"> | ||||
| 						<div | ||||
| 							class="bg-gray-200 dark:bg-gray-600 font-bold px-3 py-1 border border-r-0 dark:border-gray-600 rounded-l-lg" | ||||
| 						> | ||||
| 							/ | ||||
| 						</div> | ||||
| 						<input | ||||
| 							class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-r-lg" | ||||
| 							placeholder="short-summary" | ||||
| 							bind:value={command} | ||||
| 							required | ||||
| 						/> | ||||
| 					</div> | ||||
| 
 | ||||
| 					<div class="text-xs text-gray-400 dark:text-gray-500"> | ||||
| 						Only <span class=" text-gray-600 dark:text-gray-300 font-medium" | ||||
| 							>alphanumeric characters and hyphens</span | ||||
| 						> | ||||
| 						are allowed; Activate this command by typing "<span | ||||
| 							class=" text-gray-600 dark:text-gray-300 font-medium" | ||||
| 						> | ||||
| 							/{command} | ||||
| 						</span>" to chat input. | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class="my-2"> | ||||
| 					<div class="flex w-full justify-between"> | ||||
| 						<div class=" self-center text-sm font-semibold">Prompt</div> | ||||
| 					</div> | ||||
| 
 | ||||
| 					<div class="mt-2"> | ||||
| 						<div class=" text-xs font-semibold mb-2">Content*</div> | ||||
| 
 | ||||
| 						<div> | ||||
| 							<textarea | ||||
| 								class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-lg" | ||||
| 								placeholder={`Write a summary in 50 words that summarizes [topic or keyword].`} | ||||
| 								rows="6" | ||||
| 								bind:value={content} | ||||
| 								required | ||||
| 							/> | ||||
| 						</div> | ||||
| 
 | ||||
| 						<div class="text-xs text-gray-400 dark:text-gray-500"> | ||||
| 							Format your variables using square brackets like this: <span | ||||
| 								class=" text-gray-600 dark:text-gray-300 font-medium">[variable]</span | ||||
| 							> . Remember to enclose them with '[' and ']'. | ||||
| 						</div> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class="my-2 flex justify-end"> | ||||
| 					<button | ||||
| 						class=" text-sm px-3 py-2 transition rounded-xl {loading | ||||
| 							? ' cursor-not-allowed bg-gray-100 dark:bg-gray-800' | ||||
| 							: ' bg-gray-50 hover:bg-gray-100 dark:bg-gray-700 dark:hover:bg-gray-800'} flex" | ||||
| 						type="submit" | ||||
| 						disabled={loading} | ||||
| 					> | ||||
| 						<div class=" self-center font-medium">Save & Create</div> | ||||
| 
 | ||||
| 						{#if loading} | ||||
| 							<div class="ml-1.5 self-center"> | ||||
| 								<svg | ||||
| 									class=" w-4 h-4" | ||||
| 									viewBox="0 0 24 24" | ||||
| 									fill="currentColor" | ||||
| 									xmlns="http://www.w3.org/2000/svg" | ||||
| 									><style> | ||||
| 										.spinner_ajPY { | ||||
| 											transform-origin: center; | ||||
| 											animation: spinner_AtaB 0.75s infinite linear; | ||||
| 										} | ||||
| 										@keyframes spinner_AtaB { | ||||
| 											100% { | ||||
| 												transform: rotate(360deg); | ||||
| 											} | ||||
| 										} | ||||
| 									</style><path | ||||
| 										d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z" | ||||
| 										opacity=".25" | ||||
| 									/><path | ||||
| 										d="M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z" | ||||
| 										class="spinner_ajPY" | ||||
| 									/></svg | ||||
| 								> | ||||
| 							</div> | ||||
| 						{/if} | ||||
| 					</button> | ||||
| 				</div> | ||||
| 			</form> | ||||
| 		</div> | ||||
| 	</div> | ||||
| </div> | ||||
							
								
								
									
										520
									
								
								src/routes/(app)/prompts/edit/+page.svelte
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										520
									
								
								src/routes/(app)/prompts/edit/+page.svelte
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,520 @@ | |||
| <script> | ||||
| 	import { v4 as uuidv4 } from 'uuid'; | ||||
| 	import { toast } from 'svelte-french-toast'; | ||||
| 	import { goto } from '$app/navigation'; | ||||
| 
 | ||||
| 	import { onMount } from 'svelte'; | ||||
| 	import { page } from '$app/stores'; | ||||
| 
 | ||||
| 	import { settings, user, config, modelfiles } from '$lib/stores'; | ||||
| 
 | ||||
| 	import { OLLAMA_API_BASE_URL } from '$lib/constants'; | ||||
| 	import { splitStream } from '$lib/utils'; | ||||
| 
 | ||||
| 	import { createModel } from '$lib/apis/ollama'; | ||||
| 	import { getModelfiles, updateModelfileByTagName } from '$lib/apis/modelfiles'; | ||||
| 
 | ||||
| 	import Advanced from '$lib/components/chat/Settings/Advanced.svelte'; | ||||
| 
 | ||||
| 	let loading = false; | ||||
| 
 | ||||
| 	let filesInputElement; | ||||
| 	let inputFiles; | ||||
| 	let imageUrl = null; | ||||
| 	let digest = ''; | ||||
| 	let pullProgress = null; | ||||
| 	let success = false; | ||||
| 
 | ||||
| 	let modelfile = null; | ||||
| 	// /////////// | ||||
| 	// Modelfile | ||||
| 	// /////////// | ||||
| 
 | ||||
| 	let title = ''; | ||||
| 	let tagName = ''; | ||||
| 	let desc = ''; | ||||
| 
 | ||||
| 	// Raw Mode | ||||
| 	let content = ''; | ||||
| 
 | ||||
| 	let suggestions = [ | ||||
| 		{ | ||||
| 			content: '' | ||||
| 		} | ||||
| 	]; | ||||
| 
 | ||||
| 	let categories = { | ||||
| 		character: false, | ||||
| 		assistant: false, | ||||
| 		writing: false, | ||||
| 		productivity: false, | ||||
| 		programming: false, | ||||
| 		'data analysis': false, | ||||
| 		lifestyle: false, | ||||
| 		education: false, | ||||
| 		business: false | ||||
| 	}; | ||||
| 
 | ||||
| 	onMount(() => { | ||||
| 		tagName = $page.url.searchParams.get('tag'); | ||||
| 
 | ||||
| 		if (tagName) { | ||||
| 			modelfile = $modelfiles.filter((modelfile) => modelfile.tagName === tagName)[0]; | ||||
| 
 | ||||
| 			console.log(modelfile); | ||||
| 
 | ||||
| 			imageUrl = modelfile.imageUrl; | ||||
| 			title = modelfile.title; | ||||
| 			desc = modelfile.desc; | ||||
| 			content = modelfile.content; | ||||
| 			suggestions = | ||||
| 				modelfile.suggestionPrompts.length != 0 | ||||
| 					? modelfile.suggestionPrompts | ||||
| 					: [ | ||||
| 							{ | ||||
| 								content: '' | ||||
| 							} | ||||
| 					  ]; | ||||
| 
 | ||||
| 			for (const category of modelfile.categories) { | ||||
| 				categories[category.toLowerCase()] = true; | ||||
| 			} | ||||
| 		} else { | ||||
| 			goto('/modelfiles'); | ||||
| 		} | ||||
| 	}); | ||||
| 
 | ||||
| 	const updateModelfile = async (modelfile) => { | ||||
| 		await updateModelfileByTagName(localStorage.token, modelfile.tagName, modelfile); | ||||
| 		await modelfiles.set(await getModelfiles(localStorage.token)); | ||||
| 	}; | ||||
| 
 | ||||
| 	const updateHandler = async () => { | ||||
| 		loading = true; | ||||
| 
 | ||||
| 		if (Object.keys(categories).filter((category) => categories[category]).length == 0) { | ||||
| 			toast.error( | ||||
| 				'Uh-oh! It looks like you missed selecting a category. Please choose one to complete your modelfile.' | ||||
| 			); | ||||
| 		} | ||||
| 
 | ||||
| 		if ( | ||||
| 			title !== '' && | ||||
| 			desc !== '' && | ||||
| 			content !== '' && | ||||
| 			Object.keys(categories).filter((category) => categories[category]).length > 0 | ||||
| 		) { | ||||
| 			const res = await createModel( | ||||
| 				$settings?.API_BASE_URL ?? OLLAMA_API_BASE_URL, | ||||
| 				localStorage.token, | ||||
| 				tagName, | ||||
| 				content | ||||
| 			); | ||||
| 
 | ||||
| 			if (res) { | ||||
| 				const reader = res.body | ||||
| 					.pipeThrough(new TextDecoderStream()) | ||||
| 					.pipeThrough(splitStream('\n')) | ||||
| 					.getReader(); | ||||
| 
 | ||||
| 				while (true) { | ||||
| 					const { value, done } = await reader.read(); | ||||
| 					if (done) break; | ||||
| 
 | ||||
| 					try { | ||||
| 						let lines = value.split('\n'); | ||||
| 
 | ||||
| 						for (const line of lines) { | ||||
| 							if (line !== '') { | ||||
| 								console.log(line); | ||||
| 								let data = JSON.parse(line); | ||||
| 								console.log(data); | ||||
| 
 | ||||
| 								if (data.error) { | ||||
| 									throw data.error; | ||||
| 								} | ||||
| 								if (data.detail) { | ||||
| 									throw data.detail; | ||||
| 								} | ||||
| 
 | ||||
| 								if (data.status) { | ||||
| 									if ( | ||||
| 										!data.digest && | ||||
| 										!data.status.includes('writing') && | ||||
| 										!data.status.includes('sha256') | ||||
| 									) { | ||||
| 										toast.success(data.status); | ||||
| 
 | ||||
| 										if (data.status === 'success') { | ||||
| 											success = true; | ||||
| 										} | ||||
| 									} else { | ||||
| 										if (data.digest) { | ||||
| 											digest = data.digest; | ||||
| 
 | ||||
| 											if (data.completed) { | ||||
| 												pullProgress = Math.round((data.completed / data.total) * 1000) / 10; | ||||
| 											} else { | ||||
| 												pullProgress = 100; | ||||
| 											} | ||||
| 										} | ||||
| 									} | ||||
| 								} | ||||
| 							} | ||||
| 						} | ||||
| 					} catch (error) { | ||||
| 						console.log(error); | ||||
| 						toast.error(error); | ||||
| 					} | ||||
| 				} | ||||
| 			} | ||||
| 
 | ||||
| 			if (success) { | ||||
| 				await updateModelfile({ | ||||
| 					tagName: tagName, | ||||
| 					imageUrl: imageUrl, | ||||
| 					title: title, | ||||
| 					desc: desc, | ||||
| 					content: content, | ||||
| 					suggestionPrompts: suggestions.filter((prompt) => prompt.content !== ''), | ||||
| 					categories: Object.keys(categories).filter((category) => categories[category]) | ||||
| 				}); | ||||
| 				await goto('/modelfiles'); | ||||
| 			} | ||||
| 		} | ||||
| 		loading = false; | ||||
| 		success = false; | ||||
| 	}; | ||||
| </script> | ||||
| 
 | ||||
| <div class="min-h-screen w-full flex justify-center dark:text-white"> | ||||
| 	<div class=" py-2.5 flex flex-col justify-between w-full"> | ||||
| 		<div class="max-w-2xl mx-auto w-full px-3 md:px-0 my-10"> | ||||
| 			<input | ||||
| 				bind:this={filesInputElement} | ||||
| 				bind:files={inputFiles} | ||||
| 				type="file" | ||||
| 				hidden | ||||
| 				accept="image/*" | ||||
| 				on:change={() => { | ||||
| 					let reader = new FileReader(); | ||||
| 					reader.onload = (event) => { | ||||
| 						let originalImageUrl = `${event.target.result}`; | ||||
| 
 | ||||
| 						const img = new Image(); | ||||
| 						img.src = originalImageUrl; | ||||
| 
 | ||||
| 						img.onload = function () { | ||||
| 							const canvas = document.createElement('canvas'); | ||||
| 							const ctx = canvas.getContext('2d'); | ||||
| 
 | ||||
| 							// Calculate the aspect ratio of the image | ||||
| 							const aspectRatio = img.width / img.height; | ||||
| 
 | ||||
| 							// Calculate the new width and height to fit within 100x100 | ||||
| 							let newWidth, newHeight; | ||||
| 							if (aspectRatio > 1) { | ||||
| 								newWidth = 100 * aspectRatio; | ||||
| 								newHeight = 100; | ||||
| 							} else { | ||||
| 								newWidth = 100; | ||||
| 								newHeight = 100 / aspectRatio; | ||||
| 							} | ||||
| 
 | ||||
| 							// Set the canvas size | ||||
| 							canvas.width = 100; | ||||
| 							canvas.height = 100; | ||||
| 
 | ||||
| 							// Calculate the position to center the image | ||||
| 							const offsetX = (100 - newWidth) / 2; | ||||
| 							const offsetY = (100 - newHeight) / 2; | ||||
| 
 | ||||
| 							// Draw the image on the canvas | ||||
| 							ctx.drawImage(img, offsetX, offsetY, newWidth, newHeight); | ||||
| 
 | ||||
| 							// Get the base64 representation of the compressed image | ||||
| 							const compressedSrc = canvas.toDataURL('image/jpeg'); | ||||
| 
 | ||||
| 							// Display the compressed image | ||||
| 							imageUrl = compressedSrc; | ||||
| 
 | ||||
| 							inputFiles = null; | ||||
| 						}; | ||||
| 					}; | ||||
| 
 | ||||
| 					if ( | ||||
| 						inputFiles && | ||||
| 						inputFiles.length > 0 && | ||||
| 						['image/gif', 'image/jpeg', 'image/png'].includes(inputFiles[0]['type']) | ||||
| 					) { | ||||
| 						reader.readAsDataURL(inputFiles[0]); | ||||
| 					} else { | ||||
| 						console.log(`Unsupported File Type '${inputFiles[0]['type']}'.`); | ||||
| 						inputFiles = null; | ||||
| 					} | ||||
| 				}} | ||||
| 			/> | ||||
| 
 | ||||
| 			<div class=" text-2xl font-semibold mb-6">My Modelfiles</div> | ||||
| 
 | ||||
| 			<button | ||||
| 				class="flex space-x-1" | ||||
| 				on:click={() => { | ||||
| 					history.back(); | ||||
| 				}} | ||||
| 			> | ||||
| 				<div class=" self-center"> | ||||
| 					<svg | ||||
| 						xmlns="http://www.w3.org/2000/svg" | ||||
| 						viewBox="0 0 20 20" | ||||
| 						fill="currentColor" | ||||
| 						class="w-4 h-4" | ||||
| 					> | ||||
| 						<path | ||||
| 							fill-rule="evenodd" | ||||
| 							d="M17 10a.75.75 0 01-.75.75H5.612l4.158 3.96a.75.75 0 11-1.04 1.08l-5.5-5.25a.75.75 0 010-1.08l5.5-5.25a.75.75 0 111.04 1.08L5.612 9.25H16.25A.75.75 0 0117 10z" | ||||
| 							clip-rule="evenodd" | ||||
| 						/> | ||||
| 					</svg> | ||||
| 				</div> | ||||
| 				<div class=" self-center font-medium text-sm">Back</div> | ||||
| 			</button> | ||||
| 			<hr class="my-3 dark:border-gray-700" /> | ||||
| 
 | ||||
| 			<form | ||||
| 				class="flex flex-col" | ||||
| 				on:submit|preventDefault={() => { | ||||
| 					updateHandler(); | ||||
| 				}} | ||||
| 			> | ||||
| 				<div class="flex justify-center my-4"> | ||||
| 					<div class="self-center"> | ||||
| 						<button | ||||
| 							class=" {imageUrl | ||||
| 								? '' | ||||
| 								: 'p-6'} rounded-full dark:bg-gray-700 border border-dashed border-gray-200" | ||||
| 							type="button" | ||||
| 							on:click={() => { | ||||
| 								filesInputElement.click(); | ||||
| 							}} | ||||
| 						> | ||||
| 							{#if imageUrl} | ||||
| 								<img | ||||
| 									src={imageUrl} | ||||
| 									alt="modelfile profile" | ||||
| 									class=" rounded-full w-20 h-20 object-cover" | ||||
| 								/> | ||||
| 							{:else} | ||||
| 								<svg | ||||
| 									xmlns="http://www.w3.org/2000/svg" | ||||
| 									viewBox="0 0 24 24" | ||||
| 									fill="currentColor" | ||||
| 									class="w-8" | ||||
| 								> | ||||
| 									<path | ||||
| 										fill-rule="evenodd" | ||||
| 										d="M12 3.75a.75.75 0 01.75.75v6.75h6.75a.75.75 0 010 1.5h-6.75v6.75a.75.75 0 01-1.5 0v-6.75H4.5a.75.75 0 010-1.5h6.75V4.5a.75.75 0 01.75-.75z" | ||||
| 										clip-rule="evenodd" | ||||
| 									/> | ||||
| 								</svg> | ||||
| 							{/if} | ||||
| 						</button> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class="my-2 flex space-x-2"> | ||||
| 					<div class="flex-1"> | ||||
| 						<div class=" text-sm font-semibold mb-2">Name*</div> | ||||
| 
 | ||||
| 						<div> | ||||
| 							<input | ||||
| 								class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-lg" | ||||
| 								placeholder="Name your modelfile" | ||||
| 								bind:value={title} | ||||
| 								required | ||||
| 							/> | ||||
| 						</div> | ||||
| 					</div> | ||||
| 
 | ||||
| 					<div class="flex-1"> | ||||
| 						<div class=" text-sm font-semibold mb-2">Model Tag Name*</div> | ||||
| 
 | ||||
| 						<div> | ||||
| 							<input | ||||
| 								class="px-3 py-1.5 text-sm w-full bg-transparent disabled:text-gray-500 border dark:border-gray-600 outline-none rounded-lg" | ||||
| 								placeholder="Add a model tag name" | ||||
| 								value={tagName} | ||||
| 								disabled | ||||
| 								required | ||||
| 							/> | ||||
| 						</div> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class="my-2"> | ||||
| 					<div class=" text-sm font-semibold mb-2">Description*</div> | ||||
| 
 | ||||
| 					<div> | ||||
| 						<input | ||||
| 							class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-lg" | ||||
| 							placeholder="Add a short description about what this modelfile does" | ||||
| 							bind:value={desc} | ||||
| 							required | ||||
| 						/> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class="my-2"> | ||||
| 					<div class="flex w-full justify-between"> | ||||
| 						<div class=" self-center text-sm font-semibold">Modelfile</div> | ||||
| 					</div> | ||||
| 
 | ||||
| 					<!-- <div class=" text-sm font-semibold mb-2"></div> --> | ||||
| 
 | ||||
| 					<div class="mt-2"> | ||||
| 						<div class=" text-xs font-semibold mb-2">Content*</div> | ||||
| 
 | ||||
| 						<div> | ||||
| 							<textarea | ||||
| 								class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-lg" | ||||
| 								placeholder={`FROM llama2\nPARAMETER temperature 1\nSYSTEM """\nYou are Mario from Super Mario Bros, acting as an assistant.\n"""`} | ||||
| 								rows="6" | ||||
| 								bind:value={content} | ||||
| 								required | ||||
| 							/> | ||||
| 						</div> | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class="my-2"> | ||||
| 					<div class="flex w-full justify-between mb-2"> | ||||
| 						<div class=" self-center text-sm font-semibold">Prompt suggestions</div> | ||||
| 
 | ||||
| 						<button | ||||
| 							class="p-1 px-3 text-xs flex rounded transition" | ||||
| 							type="button" | ||||
| 							on:click={() => { | ||||
| 								if (suggestions.length === 0 || suggestions.at(-1).content !== '') { | ||||
| 									suggestions = [...suggestions, { content: '' }]; | ||||
| 								} | ||||
| 							}} | ||||
| 						> | ||||
| 							<svg | ||||
| 								xmlns="http://www.w3.org/2000/svg" | ||||
| 								viewBox="0 0 20 20" | ||||
| 								fill="currentColor" | ||||
| 								class="w-4 h-4" | ||||
| 							> | ||||
| 								<path | ||||
| 									d="M10.75 4.75a.75.75 0 00-1.5 0v4.5h-4.5a.75.75 0 000 1.5h4.5v4.5a.75.75 0 001.5 0v-4.5h4.5a.75.75 0 000-1.5h-4.5v-4.5z" | ||||
| 								/> | ||||
| 							</svg> | ||||
| 						</button> | ||||
| 					</div> | ||||
| 					<div class="flex flex-col space-y-1"> | ||||
| 						{#each suggestions as prompt, promptIdx} | ||||
| 							<div class=" flex border dark:border-gray-600 rounded-lg"> | ||||
| 								<input | ||||
| 									class="px-3 py-1.5 text-sm w-full bg-transparent outline-none border-r dark:border-gray-600" | ||||
| 									placeholder="Write a prompt suggestion (e.g. Who are you?)" | ||||
| 									bind:value={prompt.content} | ||||
| 								/> | ||||
| 
 | ||||
| 								<button | ||||
| 									class="px-2" | ||||
| 									type="button" | ||||
| 									on:click={() => { | ||||
| 										suggestions.splice(promptIdx, 1); | ||||
| 										suggestions = suggestions; | ||||
| 									}} | ||||
| 								> | ||||
| 									<svg | ||||
| 										xmlns="http://www.w3.org/2000/svg" | ||||
| 										viewBox="0 0 20 20" | ||||
| 										fill="currentColor" | ||||
| 										class="w-4 h-4" | ||||
| 									> | ||||
| 										<path | ||||
| 											d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z" | ||||
| 										/> | ||||
| 									</svg> | ||||
| 								</button> | ||||
| 							</div> | ||||
| 						{/each} | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				<div class="my-2"> | ||||
| 					<div class=" text-sm font-semibold mb-2">Categories</div> | ||||
| 
 | ||||
| 					<div class="grid grid-cols-4"> | ||||
| 						{#each Object.keys(categories) as category} | ||||
| 							<div class="flex space-x-2 text-sm"> | ||||
| 								<input type="checkbox" bind:checked={categories[category]} /> | ||||
| 
 | ||||
| 								<div class=" capitalize">{category}</div> | ||||
| 							</div> | ||||
| 						{/each} | ||||
| 					</div> | ||||
| 				</div> | ||||
| 
 | ||||
| 				{#if pullProgress !== null} | ||||
| 					<div class="my-2"> | ||||
| 						<div class=" text-sm font-semibold mb-2">Pull Progress</div> | ||||
| 						<div class="w-full rounded-full dark:bg-gray-800"> | ||||
| 							<div | ||||
| 								class="dark:bg-gray-600 text-xs font-medium text-blue-100 text-center p-0.5 leading-none rounded-full" | ||||
| 								style="width: {Math.max(15, pullProgress ?? 0)}%" | ||||
| 							> | ||||
| 								{pullProgress ?? 0}% | ||||
| 							</div> | ||||
| 						</div> | ||||
| 						<div class="mt-1 text-xs dark:text-gray-500" style="font-size: 0.5rem;"> | ||||
| 							{digest} | ||||
| 						</div> | ||||
| 					</div> | ||||
| 				{/if} | ||||
| 
 | ||||
| 				<div class="my-2 flex justify-end"> | ||||
| 					<button | ||||
| 						class=" text-sm px-3 py-2 transition rounded-xl {loading | ||||
| 							? ' cursor-not-allowed bg-gray-100 dark:bg-gray-800' | ||||
| 							: ' bg-gray-50 hover:bg-gray-100 dark:bg-gray-700 dark:hover:bg-gray-800'} flex" | ||||
| 						type="submit" | ||||
| 						disabled={loading} | ||||
| 					> | ||||
| 						<div class=" self-center font-medium">Save & Update</div> | ||||
| 
 | ||||
| 						{#if loading} | ||||
| 							<div class="ml-1.5 self-center"> | ||||
| 								<svg | ||||
| 									class=" w-4 h-4" | ||||
| 									viewBox="0 0 24 24" | ||||
| 									fill="currentColor" | ||||
| 									xmlns="http://www.w3.org/2000/svg" | ||||
| 									><style> | ||||
| 										.spinner_ajPY { | ||||
| 											transform-origin: center; | ||||
| 											animation: spinner_AtaB 0.75s infinite linear; | ||||
| 										} | ||||
| 										@keyframes spinner_AtaB { | ||||
| 											100% { | ||||
| 												transform: rotate(360deg); | ||||
| 											} | ||||
| 										} | ||||
| 									</style><path | ||||
| 										d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z" | ||||
| 										opacity=".25" | ||||
| 									/><path | ||||
| 										d="M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z" | ||||
| 										class="spinner_ajPY" | ||||
| 									/></svg | ||||
| 								> | ||||
| 							</div> | ||||
| 						{/if} | ||||
| 					</button> | ||||
| 				</div> | ||||
| 			</form> | ||||
| 		</div> | ||||
| 	</div> | ||||
| </div> | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek