Upload questions_answers.csv
Browse files- questions_answers.csv +21 -0
questions_answers.csv
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
question,answer
|
| 2 |
+
What is GAIA?,GAIA is Hugging Face's open framework for building language agent applications.
|
| 3 |
+
Which tools does GAIA support?,"GAIA supports tools like DuckDuckGoSearch, Python, and Wikipedia."
|
| 4 |
+
How do you use tools in GAIA?,By passing them to the AgentExecutor or using the with statement in Python.
|
| 5 |
+
What is the core of a GAIA agent?,"A PromptNode, an LLM-powered component that processes instructions."
|
| 6 |
+
What file defines an agent in the final assignment?,app.py
|
| 7 |
+
How many tools must be used in the final exam?,At least two.
|
| 8 |
+
Which LLM is commonly used in GAIA examples?,mistralai/Mistral-7B-Instruct-v0.2
|
| 9 |
+
What should you include in your app for the certificate?,A callable Gradio interface that returns answers.
|
| 10 |
+
What does the scoring API expect?,"20 answers in order, submitted as a list."
|
| 11 |
+
Where do you submit your answers for scoring?,https://agents-course-unit4-scoring.hf.space/api/score
|
| 12 |
+
What is the format of the answers submission?,A JSON object with the key 'answers' and a list of 20 answers.
|
| 13 |
+
What does the Unit 4 exam test?,Your ability to build and submit a functional GAIA agent.
|
| 14 |
+
What Python package is required for the interface?,gradio
|
| 15 |
+
What is the purpose of PromptNode in GAIA?,To route and handle prompts using an LLM.
|
| 16 |
+
What kind of agent does the exam require?,A language agent built using the GAIA framework.
|
| 17 |
+
How do you get the certificate?,By answering at least 6 of 20 questions correctly.
|
| 18 |
+
What should your Gradio UI include?,A button to trigger answer generation and a result display.
|
| 19 |
+
What happens if the scoring API is unavailable?,The script should handle the error gracefully.
|
| 20 |
+
How are answers matched in fallback?,Using fuzzy matching with difflib.
|
| 21 |
+
What does the fallback model do?,Tries to guess answers using a question-answering pipeline.
|