- Split differrent caching mechanisms (types, version tree, config) into different cachers - Improve resource usage on starting components, and correct gevent usage - Refine repopack usage for eveai_app (too large) - Change nginx dockerfile to allow for specialist overviews being served statically
24 lines
926 B
YAML
24 lines
926 B
YAML
version: "1.0.0"
|
|
name: "RAG Task"
|
|
task_description: >
|
|
Answer the question based on the following context, delimited between triple backquotes, and taking into account
|
|
the history of the discussion, in between triple %
|
|
{custom_description}
|
|
Use the following {language} in your communication, and cite the sources used at the end of the full conversation.
|
|
If the question cannot be answered using the given context, say "I have insufficient information to answer this question."
|
|
Context:
|
|
```{context}```
|
|
History:
|
|
%%%{history}%%%
|
|
Question:
|
|
{question}
|
|
expected_output: >
|
|
An answer to the question asked formatted in markdown, without '```'.
|
|
A list of sources used in generating the answer.
|
|
An indication (True or False) of your ability to provide an answer.
|
|
metadata:
|
|
author: "Josako"
|
|
date_added: "2025-01-08"
|
|
description: "A Task that gives RAG-based answers"
|
|
changes: "Initial version"
|