Abid Ali Awan commited on
Commit
e9e1d25
·
1 Parent(s): 3de628f

refactor: Remove MCPAgent class and update app to use orchestrator for chat functionality; update README with new SDK version and tags.

Browse files
Files changed (3) hide show
  1. README.md +5 -3
  2. app.py +2 -1
  3. agent.py → orchestrator.py +0 -0
README.md CHANGED
@@ -1,14 +1,16 @@
1
  ---
2
  title: Mlops Agent
3
- emoji: 🏢
4
  colorFrom: indigo
5
  colorTo: green
6
  sdk: gradio
7
- sdk_version: 5.49.1
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
11
- short_description: Analyse, train, deploy, and test API, all in seconds
 
 
12
  ---
13
 
14
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
  title: Mlops Agent
3
+ emoji: 🔄️
4
  colorFrom: indigo
5
  colorTo: green
6
  sdk: gradio
7
+ sdk_version: 6.0.0
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
11
+ short_description: Analyse, train, deploy, and test API, all in seconds.
12
+ tags:
13
+ - mcp-in-action-track-customer
14
  ---
15
 
16
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py CHANGED
@@ -3,7 +3,8 @@ import shutil
3
  import urllib.parse
4
 
5
  import gradio as gr
6
- from agent import run_orchestrated_chat # we'll write this next
 
7
 
8
 
9
  def handle_upload(file_obj, request: gr.Request):
 
3
  import urllib.parse
4
 
5
  import gradio as gr
6
+
7
+ from orchestrator import run_orchestrated_chat # we'll write this next
8
 
9
 
10
  def handle_upload(file_obj, request: gr.Request):
agent.py → orchestrator.py RENAMED
File without changes