Updated README
Browse files- Gradio_UI.py +1 -1
- README.md +12 -3
Gradio_UI.py
CHANGED
@@ -19,7 +19,7 @@ import re
|
|
19 |
import shutil
|
20 |
from typing import Optional
|
21 |
|
22 |
-
from smolagents.agent_types import AgentAudio, AgentImage, AgentText
|
23 |
from smolagents.agents import ActionStep, MultiStepAgent
|
24 |
from smolagents.memory import MemoryStep
|
25 |
from smolagents.utils import _is_package_available
|
|
|
19 |
import shutil
|
20 |
from typing import Optional
|
21 |
|
22 |
+
from smolagents.agent_types import AgentAudio, AgentImage, AgentText
|
23 |
from smolagents.agents import ActionStep, MultiStepAgent
|
24 |
from smolagents.memory import MemoryStep
|
25 |
from smolagents.utils import _is_package_available
|
README.md
CHANGED
@@ -21,13 +21,22 @@ Check out the configuration reference at [spaces-config-reference](https://huggi
|
|
21 |
|
22 |
# Unit one: Smolagents
|
23 |
|
24 |
-
Main course GitHub repository [HuggingFace agents course](https://github.com/gperdrizet/hf-agents-course).
|
25 |
-
|
26 |
First hands-on course exercise - create a simple agent using Smolagents.
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
## Running
|
29 |
|
30 |
-
From
|
31 |
|
32 |
### 1. HuggingFace spaces
|
33 |
|
|
|
21 |
|
22 |
# Unit one: Smolagents
|
23 |
|
|
|
|
|
24 |
First hands-on course exercise - create a simple agent using Smolagents.
|
25 |
|
26 |
+
- My main GitHub repository for the course: [HuggingFace agents course](https://github.com/gperdrizet/hf-agents-course).
|
27 |
+
- Unit 1 project on HuggingFace: [Let’s Create Our First Agent Using smolagents](https://huggingface.co/learn/agents-course/unit1/tutorial)
|
28 |
+
|
29 |
+
## Features
|
30 |
+
|
31 |
+
1. Multi-turn agent with [Qwen2.5-Coder-32B-Instruct](https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct) using Gradio and smolagents
|
32 |
+
2. Image generation using [FLUX.1-schnell](https://huggingface.co/black-forest-labs/FLUX.1-schnell) from Black Forest Labs
|
33 |
+
3. Text to speech using [Chatterbox](https://huggingface.co/ResembleAI/chatterbox) from Resemble AI
|
34 |
+
4. Web search/site crawling
|
35 |
+
5. Time-zone look-up
|
36 |
+
|
37 |
## Running
|
38 |
|
39 |
+
From your HuggingFace settings dashboard, create a fine-grained access token with inference permissions.
|
40 |
|
41 |
### 1. HuggingFace spaces
|
42 |
|