Spaces:
Runtime error
Runtime error
File size: 812 Bytes
7b2e5db |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from pathlib import Path
CONFIG_FILE_PATH = Path("config/config.yaml")
HEILMEIER_CATECHISM = (
"1. What are they trying to do? Articulate the objectives using absolutely no jargon.\n"
"2. How was it done before this article, and what are the limitations of those practices?\n"
"3. What is new in their approach, and why do they think it will be successful?\n"
"4. Who cares? If they are successful, what difference will it make?\n"
"5. What experiment do they design to show their approach works? What dataset or question set did they use? What LLMs or other AI systems did they work? How did they measure effectiveness?\n"
"6. What were the results? What do they show? Again, articulate this using absolutely no jargon.\n"
)
ARXIV_API_ACCESS_POINT = "http://export.arxiv.org/api/query"
|