transformation folder change
This commit is contained in:
parent
c65bf8ba12
commit
0876e94658
13 changed files with 26 additions and 27 deletions
|
|
@ -30,7 +30,7 @@ def call_model(state: dict, config: RunnableConfig) -> dict:
|
|||
"input_text": state["content_stack"][-1],
|
||||
"command": current_transformation,
|
||||
}
|
||||
current_transformation = "patterns/custom"
|
||||
current_transformation = "patterns/default/command"
|
||||
|
||||
transformation_result = run_pattern(
|
||||
pattern_name=current_transformation,
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ def call_model(state: TocState, config: RunnableConfig) -> dict:
|
|||
)
|
||||
return {
|
||||
"toc": run_pattern(
|
||||
pattern_name="recursive_toc",
|
||||
pattern_name="default/recursive_toc",
|
||||
model_id=model_id,
|
||||
state=state,
|
||||
).content
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ st.set_page_config(
|
|||
version_sidebar()
|
||||
|
||||
|
||||
st.title("Settings")
|
||||
st.title("⚙️ Settings")
|
||||
|
||||
model_tab, model_defaults_tab = st.tabs(["Models", "Model Defaults"])
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{% include 'patterns/common_text.jinja' %}
|
||||
{% include 'patterns/default/common_tranformation_instructions.jinja' %}
|
||||
|
||||
# IDENTITY and PURPOSE
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{% include 'patterns/common_text.jinja' %}
|
||||
{% include 'patterns/default/common_tranformation_instructions.jinja' %}
|
||||
|
||||
Please clean-up the following text, fixing the paragraphs, ponctuation, etc.
|
||||
If you find any word or name mispellings, feel free to correct.
|
||||
|
|
|
|||
9
prompts/patterns/default/command.jinja
Normal file
9
prompts/patterns/default/command.jinja
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{% include 'patterns/default/common_tranformation_instructions.jinja' %}
|
||||
|
||||
{{command}}
|
||||
|
||||
# INPUT
|
||||
|
||||
{{input_text}}
|
||||
|
||||
# OUTPUT
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{% include 'patterns/common_text.jinja' %}
|
||||
|
||||
{{command}}
|
||||
|
||||
# INPUT
|
||||
|
||||
{{input_text}}
|
||||
|
||||
# OUTPUT
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
{% include 'patterns/common_text.jinja' %}
|
||||
{% include 'patterns/default/common_tranformation_instructions.jinja' %}
|
||||
|
||||
# IDENTITY and PURPOSE
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{% include 'patterns/common_text.jinja' %}
|
||||
{% include 'patterns/default/common_tranformation_instructions.jinja' %}
|
||||
|
||||
# MISSION
|
||||
You are a Sparse Priming Representation (SPR) writer. An SPR is a particular kind of use of language for advanced NLP, NLU, and NLG tasks, particularly useful for the latest generation of Large Language Models (LLMs). You will be given information by the USER which you are to render as an SPR.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
|
||||
{% include 'patterns/common_text.jinja' %}
|
||||
{% include 'patterns/default/common_tranformation_instructions.jinja' %}
|
||||
|
||||
# IDENTITY and PURPOSE
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{% include 'patterns/common_text.jinja' %}
|
||||
{% include 'patterns/default/common_tranformation_instructions.jinja' %}
|
||||
|
||||
# SYSTEM ROLE
|
||||
You are a content summarization assistant that creates dense, information-rich summaries optimized for machine understanding. Your summaries should capture key concepts with minimal words while maintaining complete, clear sentences.
|
||||
|
|
|
|||
|
|
@ -4,32 +4,32 @@ source_insights:
|
|||
insight_type: "Content Summary"
|
||||
description: "Summarize the content"
|
||||
transformations:
|
||||
- patterns/makeitdense
|
||||
- patterns/summarize
|
||||
- patterns/default/makeitdense
|
||||
- patterns/default/summarize
|
||||
- name: "Key Insights"
|
||||
insight_type: "Key Insights"
|
||||
description: "Extracts a list of the Key Insights of the content"
|
||||
transformations:
|
||||
- patterns/keyinsights
|
||||
- patterns/default/keyinsights
|
||||
- name: "Make it Dense"
|
||||
insight_type: "Dense Representation"
|
||||
description: "Create a dense representation of the content"
|
||||
transformations:
|
||||
- patterns/makeitdense
|
||||
- patterns/default/makeitdense
|
||||
- name: "Analyze Paper"
|
||||
insight_type: "Paper Analysis"
|
||||
description: "Analyze the paper and provide a quick summary"
|
||||
transformations:
|
||||
- patterns/analyze_paper
|
||||
- patterns/default/analyze_paper
|
||||
- name: "Reflection"
|
||||
insight_type: "Reflection Questions"
|
||||
description: "Generates a list of insightful questions to provoke reflection"
|
||||
transformations:
|
||||
- patterns/reflection_questions
|
||||
- patterns/default/reflection_questions
|
||||
# - name: "Reflection [PT]"
|
||||
# insight_type: "Reflection Questions [PT]"
|
||||
# description: "Generates a list of insightful questions to provoke reflection"
|
||||
# transformations:
|
||||
# - patterns/reflection_questions
|
||||
# - patterns/translate
|
||||
# - patterns/default/reflection_questions
|
||||
# - patterns/default/translate
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue