-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add website and move examples to the top level
- Loading branch information
Showing
10 changed files
with
69 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
|
||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-15CL0QJC3B"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-15CL0QJC3B'); | ||
</script> | ||
|
||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<title>MetaPrompt</title> | ||
<style type="text/css"> | ||
body{ | ||
margin:40px auto; | ||
font-family: monospace; | ||
max-width:650px; | ||
line-height:1.6; | ||
font-size:18px; | ||
color:#444; | ||
padding:0 10px; | ||
} | ||
h1, h2, h3 { | ||
line-height: 1.2; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1> | ||
Hello, [:stranger_name]! | ||
</h1> | ||
<p> | ||
This page is about MetaPrompt, a template engine for LLM prompts that supports writing prompts with prompts. | ||
</p> | ||
<h1>Project status | ||
</h1> | ||
<p> | ||
Early work-in-progress. Not all of the described features have been implemented. | ||
</p> | ||
<h1> | ||
Use cases | ||
</h1> | ||
<p> | ||
<ul> | ||
<li><b>Templating</b> - variable substitution</li> | ||
<li><b>Prompt rewriting</b> - crafting prompts suitable for a given task based on a set of high-level rules, moderating input contents, or selecting the most suitable model for a task automatically</li> | ||
<li><b>Prompt structuring</b> - using modules and packages to organize parameterized prompts</li> | ||
<li><b>Knowledge base maintenance</b> - store your handcrafted prompts and include them conditionally</li> | ||
<li><b>AI agents</b> - interact with the outside world</li> | ||
</ul> | ||
</p> | ||
<h1> | ||
Links | ||
</h1> | ||
<ul> | ||
<li><a href="https://github.com/promptware/metaprompt/tree/main/examples">Examples</a></li> | ||
<li><a href="https://docs.metaprompt-lang.org/">Documentation</a></li> | ||
<li><a href="https://github.com/promptware/metaprompt">Source code</a></li> | ||
</ul> | ||
</body> | ||
</html> |