dlaima commited on
Commit
c9bef43
·
verified ·
1 Parent(s): 63a4734

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -14
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
- rt-agentic-ai-cert-week2/
41
- ├── app.py #
42
- ├── agent.json # Sample ........publication for exercises
43
- ├── Gradio_UI.py # Sample ........publication for exercises
44
- ├── screenshot.jpeg # Sample ........publication for exercises
45
- ├── prompt_config.yaml # Prompt configurations for examples
46
- ├── .env.template # Environment variables template
47
- ├── requirements.txt # Python dependencies
48
- └── README.md
 
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