Add RAG and non-RAG Action workflows

This commit is contained in:
Adam Wilson
2025-05-17 16:29:35 -06:00
parent f1ae97643c
commit 6efe96be90
8 changed files with 381 additions and 302 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"rest": {
"RestGenerator": {
"name": "Microsoft ONNX Phi-3 LLM/GenAI REST API Service (RAG)",
"uri": "http://localhost:9999/api/rag_conversations",
"method": "post",
"headers": {
"Content-Type": "application/json"
},
"req_template_json_object": {
"prompt": "$INPUT"
},
"response_json": true,
"response_json_field": "response",
"request_timeout": 600,
"verify_ssl": false
}
}
}
@@ -2,7 +2,7 @@
"rest": {
"RestGenerator": {
"name": "Microsoft ONNX Phi-3 LLM/GenAI REST API Service",
"uri": "http://localhost:9999/",
"uri": "http://localhost:9999/api/conversations",
"method": "post",
"headers": {
"Content-Type": "application/json"