- correct startup of applications using gevent - introduce startup scripts (eveai_app) - caching manager for all configurations
24 lines
921 B
YAML
24 lines
921 B
YAML
version: "1.0.0"
|
|
name: "RAG 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"
|