mirror of
https://github.com/Nikhil-Doye/workflow-builder.git
synced 2026-07-22 02:01:56 +02:00
d9e7f9416a
- Introduced new workflow test results JSON file to capture node execution outcomes. - Updated NodeConfiguration component to replace OpenAI model options with DeepSeek models. - Modified OpenAIConfig component to prioritize DeepSeek API key storage and validation. - Enhanced openaiService to initialize with DeepSeek API and handle API key checks accordingly. - Updated error messages and UI labels to reflect the integration of DeepSeek API.
37 lines
885 B
JSON
37 lines
885 B
JSON
[
|
|
{
|
|
"nodeId": "629f823b-0ddd-47f9-a1ce-947ca32a08dc",
|
|
"nodeLabel": "dataInput Node",
|
|
"status": "success",
|
|
"data": {
|
|
"output": "Hello"
|
|
}
|
|
},
|
|
{
|
|
"nodeId": "b79450d7-12f0-431b-9677-54d9de0b75f3",
|
|
"nodeLabel": "llmTask Node",
|
|
"status": "success",
|
|
"data": {
|
|
"output": "Hello — straight to the point. \nHow can I help you?",
|
|
"prompt": "Answer the following question: Hello, straight to the point.",
|
|
"model": "deepseek-chat",
|
|
"temperature": 0.7,
|
|
"maxTokens": 1000,
|
|
"usage": {
|
|
"promptTokens": 16,
|
|
"completionTokens": 14,
|
|
"totalTokens": 30
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"nodeId": "0c7ed46e-5ed4-4191-bfbd-31a35d9cc46b",
|
|
"nodeLabel": "dataOutput Node",
|
|
"status": "success",
|
|
"data": {
|
|
"output": "Hello",
|
|
"format": "text",
|
|
"filename": "Analysis.txt"
|
|
}
|
|
}
|
|
] |