Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
@@ -27,25 +27,21 @@ This application allows users to create personalized greeting messages and check
|
|
27 |
> Learn more at [Hugging Face Courses](https://huggingface.co/learn).
|
28 |
---
|
29 |
|
30 |
-
### 🗂 Folder Structure
|
31 |
|
32 |
-
crewai-ollama-llama3/
|
33 |
-
├── main.py # CrewAI agent setup
|
34 |
-
├── ollama_llm.py # Custom Ollama wrapper using LangChain-compatible LLM
|
35 |
-
├── requirements.txt # Dependencies
|
36 |
|
37 |
### Repository Structure (🗂 Folder Structure)
|
38 |
|
39 |
```
|
40 |
-
|
41 |
-
|
42 |
-
├──
|
43 |
-
├──
|
44 |
-
├──
|
45 |
-
├──
|
46 |
-
├── .
|
47 |
-
├──
|
48 |
-
|
|
|
49 |
```
|
50 |
|
51 |
|
|
|
27 |
> Learn more at [Hugging Face Courses](https://huggingface.co/learn).
|
28 |
---
|
29 |
|
|
|
30 |
|
|
|
|
|
|
|
|
|
31 |
|
32 |
### Repository Structure (🗂 Folder Structure)
|
33 |
|
34 |
```
|
35 |
+
gradio_greet_time_app/
|
36 |
+
│
|
37 |
+
├── app.py # Main launcher script that initializes and runs the Gradio app.
|
38 |
+
├── agent.json # JSON config for defining tools and metadata used by a custom agent.
|
39 |
+
├── Gradio_UI.py # Contains the Gradio Blocks interface layout and connects UI to the tools.
|
40 |
+
├── screenshot.jpeg # Sample preview for the use of the app Preview image of the app UI (used in README)
|
41 |
+
├── prompt_config.yaml # Prompt configurations for examples / YAML config to store prompt templates or reusable prompt parts for tools/agents.
|
42 |
+
├── .env.template # Environment variables template /Template file showing expected environment variables (e.g., API keys).
|
43 |
+
├── requirements.txt # Python dependencies / List of Python dependencies to install
|
44 |
+
└── README.md # Project overview, setup instructions, usage examples, and screenshot link.
|
45 |
```
|
46 |
|
47 |
|