Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
@@ -22,6 +22,13 @@ short_description: Personalized Greeting & Timezone Clock
|
|
22 |
This application allows users to create personalized greeting messages and check the current local time in any global timezone.
|
23 |
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
> 🧑🏫 This app is part of the **Hugging Face Courses** series and was developed as an educational project to showcase how machine learning
|
26 |
> can be used in real-world event scenarios.
|
27 |
> Learn more at [Hugging Face Courses](https://huggingface.co/learn).
|
@@ -46,10 +53,23 @@ gradio_greet_time_app/
|
|
46 |
|
47 |
|
48 |
### Features
|
|
|
|
|
49 |
- Greeting Generator: Enter a name or phrase and choose how many times you'd like the greeting to be repeated. The app will generate a cheerful message like "Hello, HuggingFace!" multiple times.
|
50 |
- Timezone Clock: Input a valid timezone (e.g., Europe/London, America/New_York), and the app will show the current local time for that region.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
---
|
52 |
|
|
|
|
|
|
|
|
|
53 |
### Preview
|
54 |
|
55 |
[First Agent Template](Screenshot_15-5-2025_154725_huggingface.co.jpeg)
|
|
|
22 |
This application allows users to create personalized greeting messages and check the current local time in any global timezone.
|
23 |
|
24 |
|
25 |
+
how we can create Agents from scratch using Python code,
|
26 |
+
create your very first Agent capable of performing actions such as image generation, web search, time zone checking and much more!
|
27 |
+
To make this Agent, we’re going to use smolagents, a library that provides a framework for developing your agents with ease.
|
28 |
+
In short, smolagents is a library that focuses on codeAgent, a kind of agent that performs “Actions” through code blocks, and then “Observes” results by executing the code.
|
29 |
+
The agent inside smolagents is going to think, act and observe in cycle until it reaches a final answer:
|
30 |
+
|
31 |
+
|
32 |
> 🧑🏫 This app is part of the **Hugging Face Courses** series and was developed as an educational project to showcase how machine learning
|
33 |
> can be used in real-world event scenarios.
|
34 |
> Learn more at [Hugging Face Courses](https://huggingface.co/learn).
|
|
|
53 |
|
54 |
|
55 |
### Features
|
56 |
+
|
57 |
+
The Tools
|
58 |
- Greeting Generator: Enter a name or phrase and choose how many times you'd like the greeting to be repeated. The app will generate a cheerful message like "Hello, HuggingFace!" multiple times.
|
59 |
- Timezone Clock: Input a valid timezone (e.g., Europe/London, America/New_York), and the app will show the current local time for that region.
|
60 |
+
|
61 |
+
The Agent
|
62 |
+
It uses Qwen/Qwen2.5-Coder-32B-Instruct as the LLM engine. This is a very capable model that we’ll access via the serverless API.
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
|
67 |
---
|
68 |
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
|
73 |
### Preview
|
74 |
|
75 |
[First Agent Template](Screenshot_15-5-2025_154725_huggingface.co.jpeg)
|