diff --git a/dotnet/samples/GettingStarted/Workflows/Declarative/GenerateCode/Program.cs b/dotnet/samples/GettingStarted/Workflows/Declarative/GenerateCode/Program.cs index 859b74b194..54c77d4077 100644 --- a/dotnet/samples/GettingStarted/Workflows/Declarative/GenerateCode/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Declarative/GenerateCode/Program.cs @@ -42,7 +42,7 @@ internal sealed class Program Console.WriteLine(code); } - private const string DefaultWorkflow = "HelloWorld.yaml"; + private const string DefaultWorkflow = "Marketing.yaml"; private string WorkflowFile { get; } diff --git a/dotnet/samples/GettingStarted/Workflows/Declarative/README.md b/dotnet/samples/GettingStarted/Workflows/Declarative/README.md index 0418cfe8da..665c37101e 100644 --- a/dotnet/samples/GettingStarted/Workflows/Declarative/README.md +++ b/dotnet/samples/GettingStarted/Workflows/Declarative/README.md @@ -86,12 +86,14 @@ To run the sampes from the command line: 1. From the root of the repository, navigate the console to the project folder: ```sh - cd dotnet/samples/GettingStarted/Workflows/Declarative/StudentTeacher + cd dotnet/samples/GettingStarted/Workflows/Declarative/Marketing + dotnet run Marketing ``` 2. Run the demo and optionally provided input: ```sh - dotnet run "How would you compute the value of PI?" + dotnet run "An eco-friendly stainless steel water bottle that keeps drinks cold for 24 hours." + dotnet run c:/myworkflows/Marketing.yaml ``` > The sample will allow for interactive input in the absence of an input argument. \ No newline at end of file diff --git a/python/samples/demos/chatkit-integration/frontend/package-lock.json b/python/samples/demos/chatkit-integration/frontend/package-lock.json index 9cf6bb6b86..2a9ef09e64 100644 --- a/python/samples/demos/chatkit-integration/frontend/package-lock.json +++ b/python/samples/demos/chatkit-integration/frontend/package-lock.json @@ -17,7 +17,7 @@ "@types/react-dom": "^19.2.0", "@vitejs/plugin-react-swc": "^3.5.0", "typescript": "^5.4.0", - "vite": "^7.1.9" + "vite": "^7.1.12" }, "engines": { "node": ">=18.18", @@ -1328,9 +1328,9 @@ } }, "node_modules/vite": { - "version": "7.1.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.9.tgz", - "integrity": "sha512-4nVGliEpxmhCL8DslSAUdxlB6+SMrhB0a1v5ijlh1xB1nEPuy1mxaHxysVucLHuWryAxLWg6a5ei+U4TLn/rFg==", + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.12.tgz", + "integrity": "sha512-ZWyE8YXEXqJrrSLvYgrRP7p62OziLW7xI5HYGWFzOvupfAlrLvURSzv/FyGyy0eidogEM3ujU+kUG1zuHgb6Ug==", "dev": true, "license": "MIT", "dependencies": { diff --git a/python/samples/demos/chatkit-integration/frontend/package.json b/python/samples/demos/chatkit-integration/frontend/package.json index 65d65d1d53..dadfc17382 100644 --- a/python/samples/demos/chatkit-integration/frontend/package.json +++ b/python/samples/demos/chatkit-integration/frontend/package.json @@ -22,6 +22,6 @@ "@types/react-dom": "^19.2.0", "@vitejs/plugin-react-swc": "^3.5.0", "typescript": "^5.4.0", - "vite": "^7.1.9" + "vite": "^7.1.12" } } \ No newline at end of file diff --git a/workflow-samples/README.md b/workflow-samples/README.md index 539ce1a253..6932f52874 100644 --- a/workflow-samples/README.md +++ b/workflow-samples/README.md @@ -6,7 +6,7 @@ may be executed locally no different from any regular `Workflow` that is defined The difference is that the workflow definition is loaded from a YAML file instead of being defined in code: ```c# -Workflow workflow = DeclarativeWorkflowBuilder.Build("HelloWorld.yaml", options); +Workflow workflow = DeclarativeWorkflowBuilder.Build("Marketing.yaml", options); ``` These example workflows may be executed by the workflow