mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-09 22:38:10 -05:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ce9d4ad831 | ||
|
|
657bcab48c | ||
|
|
cd11dcc7a9 | ||
|
|
22040a42f2 | ||
|
|
705ccd750b |
@@ -1 +1 @@
|
||||
"1.4.157"
|
||||
"1.4.159"
|
||||
|
||||
14
patterns/system.md
Normal file
14
patterns/system.md
Normal file
@@ -0,0 +1,14 @@
|
||||
# IDENTITY
|
||||
|
||||
You are an expert educator AI with a 4,221 IQ. You specialize in understanding the key concepts in a piece of input and creating flashcards for those key concepts.
|
||||
|
||||
# STEPS
|
||||
|
||||
- Fully read and comprehend the input and map out all the concepts on a 4KM x 4KM virtual whiteboard.
|
||||
- Make a list of the key concepts, definitions, terms, etc. that are associated with the input.
|
||||
- Create flashcards for each key concept, definition, term, etc. that you have identified.
|
||||
- The flashcard should be a question of 8-16 words and an answer of up to 32 words.
|
||||
|
||||
# OUTPUT
|
||||
|
||||
- Output the flashcards in Markdown format using no special characters like italics or bold (asterisks).
|
||||
@@ -14,6 +14,6 @@ type ContextsHandler struct {
|
||||
// NewContextsHandler creates a new ContextsHandler
|
||||
func NewContextsHandler(r *gin.Engine, contexts *fsdb.ContextsEntity) (ret *ContextsHandler) {
|
||||
ret = &ContextsHandler{
|
||||
StorageHandler: NewStorageHandler[fsdb.Context](r, "contexts", contexts), contexts: contexts}
|
||||
StorageHandler: NewStorageHandler(r, "contexts", contexts), contexts: contexts}
|
||||
return
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ type PatternsHandler struct {
|
||||
// NewPatternsHandler creates a new PatternsHandler
|
||||
func NewPatternsHandler(r *gin.Engine, patterns *fsdb.PatternsEntity) (ret *PatternsHandler) {
|
||||
ret = &PatternsHandler{
|
||||
StorageHandler: NewStorageHandler[fsdb.Pattern](r, "patterns", patterns), patterns: patterns}
|
||||
StorageHandler: NewStorageHandler(r, "patterns", patterns), patterns: patterns}
|
||||
|
||||
// TODO: Add custom, replacement routes here
|
||||
//r.GET("/patterns/:name", ret.Get)
|
||||
|
||||
@@ -14,6 +14,6 @@ type SessionsHandler struct {
|
||||
// NewSessionsHandler creates a new SessionsHandler
|
||||
func NewSessionsHandler(r *gin.Engine, sessions *fsdb.SessionsEntity) (ret *SessionsHandler) {
|
||||
ret = &SessionsHandler{
|
||||
StorageHandler: NewStorageHandler[fsdb.Session](r, "sessions", sessions), sessions: sessions}
|
||||
StorageHandler: NewStorageHandler(r, "sessions", sessions), sessions: sessions}
|
||||
return ret
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package main
|
||||
|
||||
var version = "v1.4.157"
|
||||
var version = "v1.4.159"
|
||||
|
||||
@@ -26,6 +26,9 @@
|
||||
"eslint-plugin-svelte": "^2.46.1",
|
||||
"lucide-svelte": "^0.309.0",
|
||||
"mdsvex": "^0.11.2",
|
||||
"patch-package": "^8.0.0",
|
||||
"pdf-to-markdown-core": "github:jzillmann/pdf-to-markdown#modularize",
|
||||
"pdfjs-dist": "^2.5.207",
|
||||
"postcss": "^8.4.49",
|
||||
"postcss-load-config": "^6.0.1",
|
||||
"rehype-autolink-headings": "^7.1.0",
|
||||
|
||||
Reference in New Issue
Block a user