-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkflows_config.json
More file actions
52 lines (52 loc) · 3.59 KB
/
workflows_config.json
File metadata and controls
52 lines (52 loc) · 3.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"workflows": [
{
"api_endpoint": "https://api.openai.com/v1/chat/completions",
"api_key": "sk-proj-***",
"api_model": "gpt-5",
"custom_prompt": "You are a professional meeting assistant. Please summarize the following meeting transcript. Your summary should be clear, concise, and well-structured. Follow this format:\n\n1. Title: A short and relevant title for the meeting\n\n2. Summary: A high-level summary of the discussion\n\n3. Key Discussion Points:\n\n* Bullet points covering the main topics discussed\n\n* Include any important decisions made\n\n* Note any action items and who is responsible\n\n4. Next Steps:\n\n* Clearly list the next steps or follow-up items\n\n* Include deadlines (if mentioned) and responsible persons\n\nSummarize in the same language as the source text material. 如果是中文会议,请用中文总结。",
"description": "Generate a summary of the meeting",
"input_type": "text",
"name": "Meeting Summary for OpenAI"
},
{
"name": "Meeting Summary for Grok",
"input_type": "text",
"api_endpoint": "https://api.x.ai/v1/chat/completions",
"api_key": "xai-***",
"api_model": "grok-4",
"description": "Generate a summary of the meeting",
"custom_prompt": "You are a professional meeting assistant. Please summarize the following meeting transcript. Your summary should be clear, concise, and well-structured. Follow this format:\n\n1. Title: A short and relevant title for the meeting\n\n2. Summary: A high-level summary of the discussion\n\n3. Key Discussion Points:\n\n* Bullet points covering the main topics discussed\n\n* Include any important decisions made\n\n* Note any action items and who is responsible\n\n4. Next Steps:\n\n* Clearly list the next steps or follow-up items\n\n* Include deadlines (if mentioned) and responsible persons\n\nSummarize in the same language as the source text material. 如果是中文会议,请用中文总结。"
},
{
"api_endpoint": "",
"api_key": "",
"description": "Send transcript to a custom API endpoint",
"input_type": "text",
"name": "Custom API (Text)"
},
{
"api_endpoint": "",
"api_key": "",
"description": "Send audio directly to a custom API endpoint",
"input_type": "audio",
"name": "Custom API (Audio)"
},
{
"api_endpoint": "https://api.openai.com/v1/chat/completions",
"api_key": "sk-proj-***",
"custom_prompt": "You are a professional meeting secretary. Create detailed meeting minutes from the following transcript. Include:\n\n1. Meeting Title and Date\n2. Attendees (extract from the conversation if possible)\n3. Agenda Items (organized by topic)\n4. Discussions (summarized by topic)\n5. Decisions Made\n6. Action Items (include who is responsible and deadlines)\n7. Next Meeting (if mentioned)",
"description": "Generate formatted meeting minutes",
"input_type": "text",
"name": "Meeting Minutes"
},
{
"api_endpoint": "https://api.openai.com/v1/chat/completions",
"api_key": "sk-proj-***",
"custom_prompt": "You are an AI assistant specialized in extracting action items from meeting transcripts. Review the following transcript and list all action items in this format:\n\n1. [Action]: Brief description of the action item\n [Owner]: Person responsible (if mentioned)\n [Due]: Due date or timeline (if mentioned)\n [Context]: Brief context from the meeting\n\n2. [Action]: ...",
"description": "Extract action items from the meeting",
"input_type": "text",
"name": "Action Items Extractor"
}
]
}