Cosio commited on
Commit
1617ecf
·
verified ·
1 Parent(s): 235b3bf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -9,5 +9,21 @@ app_file: server.py
9
  pinned: false
10
  short_description: Prueba de servidor MCP con sentimient LLM
11
  ---
 
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  pinned: false
10
  short_description: Prueba de servidor MCP con sentimient LLM
11
  ---
12
+ Prueba de conexion MCP usando LLM para analisis de sentimientos de un texto.
13
 
14
+ Toda la configuracion se encuentra en server.py
15
+ Todos los requrimientosestan en el archivo .txt
16
+
17
+ Prueba de acceso a MCP server desde Host local
18
+
19
+ Crea el archivo .py y bejecutalo desde tu terminal local
20
+
21
+
22
+ from gradio_client import Client
23
+
24
+ client = Client("Cosio/MCP_Prueba")
25
+ result = client.predict(
26
+ text="Hello!!",
27
+ api_name="/predict"
28
+ )
29
+ print(result)