Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit e7d2e8f

Browse files
tsuwandyhcyangdaveta
authored
beta->main merge (#1165)
* added dispatcher package * added orchestratorlib * added orchestrator cli package * make orchestrator cli installed with bf cli install * cleaned up dependency, removed extra file * Update package.json * Update pnpm-lock.yaml updated reference to bf-lu in dispatcher to local reference (from "next") * Addressed review comments - Updated orchestrator unit test code to use test base model URL, so not to confuse our download stats for customers - Updated dispatcher and orchestratorlib readme to include internal MS use only text - Updated dispatcher package.json to exclude oclif - Removed unecessary files * fullEmbeddings parameter should be taken from env var * Added missing scripts per Emilio's PR comment and removed unneeded dependencies from orchestratorlib * Update package.json fixed posttest script * Refactored base model download for testing * Addressed review feedback 1. Added orchestrator command documentation on main cli package 2. Removed travil.yml from orchestrator package 3. Removed .vscode from orchestrator package 4. Removed "return 0;" from the command sources * Updated Orchestrator package README Removed specific install instructions for Linux Ubuntu. * fixed build errors * new interfaces and strengthed null-exception logic * remove composer sampler tests and reduce unnecessary "as" * Remove functional tests * updated orchestrator core package, added versions script to orchestrator package * Removed debugging logs * correct index.ts * fixed build error * remove no longer required tests * README.md and command documents * Update orchestrator bf-cli to point at release candidate * fix eslint issues * remove the eslint map testcase * Update pnpm-lock.yaml * more refactoring to interfaces * Update pnpm-lock.yaml * Update orchestratorhelper.ts removed unecessary comments * clean up comments * refactor comments * more comment refactoring * removing unused imports * more interfaces and others Co-authored-by: Hung-chih Yang <[email protected]> Co-authored-by: Dave Taniguchi <[email protected]> Co-authored-by: daveta <[email protected]>
1 parent 8dc6ffe commit e7d2e8f

File tree

396 files changed

+2624934
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

396 files changed

+2624934
-15
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,12 @@ packages/dialog/tsconfig.tsbuildinfo
8181

8282
# BuildInfo
8383
tsconfig.tsbuildinfo
84+
85+
# download NLR model file folder
86+
model_dte_roberta_for_test_command
87+
**/*.blu
88+
**/*.json
89+
**/model/**/
90+
**/**assessment**.html
91+
**/**assessment**.txt
92+

.vscode/launch.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,31 @@
1919
"internalConsoleOptions": "openOnSessionStart",
2020
"cwd": "${workspaceFolder}"
2121
},
22+
{
23+
"type": "node",
24+
"request": "launch",
25+
"name": "bf Orchestrator CLI",
26+
"preLaunchTask": "${defaultBuildTask}",
27+
"program": "${workspaceFolder}/packages/cli/bin/run",
28+
"outputCapture": "std",
29+
"outFiles": [
30+
"${workspaceFolder}/packages/orchestrator/lib/**"
31+
],
32+
"args": [
33+
"orchestrator:create",
34+
"--in",
35+
"D:/src/BotBuilder-Samples/experimental/orchestrator/csharp_dotnetcore/01.dispatch-bot/CognitiveModels",
36+
"--out",
37+
"D:/src/BotBuilder-Samples/experimental/orchestrator/csharp_dotnetcore/01.dispatch-bot/generated",
38+
"--model",
39+
"D:/src/BotBuilder-Samples/experimental/orchestrator/csharp_dotnetcore/01.dispatch-bot/model",
40+
"--entityModel",
41+
"D:/src/BotBuilder-Samples/experimental/orchestrator/csharp_dotnetcore/01.dispatch-bot/model/entity",
42+
"--hierarchical"
43+
],
44+
"internalConsoleOptions": "openOnSessionStart",
45+
"cwd": "${workspaceFolder}"
46+
},
2247
{
2348
"type": "node",
2449
"request": "launch",

0 commit comments

Comments
 (0)