Shivenduu commited on
Commit
1542ace
·
1 Parent(s): 25c1f3b

Add: Custom agent-card.json added

Browse files
Files changed (1) hide show
  1. agent-card.json +37 -0
agent-card.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "capabilities": {
3
+
4
+ },
5
+ "defaultInputModes": [
6
+ "application/json"
7
+ ],
8
+ "defaultOutputModes": [
9
+ "application/json"
10
+ ],
11
+ "description": "An A2A Agent that takes text or JSON string queries and generate songs.",
12
+ "name": "generate_song_agent",
13
+ "preferredTransport": "JSONRPC",
14
+ "protocolVersion": "0.3.0",
15
+ "skills": [
16
+ {
17
+ "description": "An A2A Agent that takes text or JSON string queries and generate songs. \n I am an A2A Agent that can generate audio using tool 'proxy_generate'.\n - I will be given a JSON string\n - I must return serializable JSON String\n ",
18
+ "id": "generate_song_agent",
19
+ "name": "model",
20
+ "tags": [
21
+ "llm"
22
+ ]
23
+ },
24
+ {
25
+ "description": "This is the Gradio callable. It calls the remote SongGeneration space and returns\neither a Gradio-playable filepath (so the UI can play it) and a JSON dict where 'audio_base64' is available.\n\nargs:\n lyrics: str\n description: str,\n genre: str,\n cfg_coef: float,\n temperature: float,\n duration_state: int,\n use_async: bool\n\nreturn:\n file_url : Dict",
26
+ "id": "generate_song_agent-proxy_generate",
27
+ "name": "proxy_generate",
28
+ "tags": [
29
+ "llm",
30
+ "tools"
31
+ ]
32
+ }
33
+ ],
34
+ "supportsAuthenticatedExtendedCard": false,
35
+ "url": "https://shivenduu-songgeneratora2a.hf.space",
36
+ "version": "0.0.1"
37
+ }