Skip to content

Commit

Permalink
Fixing typos (microsoft#1377)
Browse files Browse the repository at this point in the history
### Motivation and Context
Fixing typos to unblock PRs.
  • Loading branch information
lemillermicrosoft authored Jun 8, 2023
1 parent 3bc0967 commit de74668
Show file tree
Hide file tree
Showing 8 changed files with 19,260 additions and 3,783 deletions.
3 changes: 3 additions & 0 deletions .github/_typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ extend-exclude = [

[default.extend-words]
ACI = "ACI" # Azure Container Instance

[default.extend-identifiers]
ags = "ags" # Azure Graph Service
2 changes: 1 addition & 1 deletion docs/GLOSSARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ commonly used terms

**Function** - A computational machine comprised of Semantic AI and/or native code that's available in a [SKILL](SKILLS.md).

- "The Office SKILL has many FUNCTIONs"
- "The Office SKILL has many FUNCTIONS"

**Native Function** - expressed with traditional computing language (C#, Python, Typescript)
and easily integrates with SK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface IData {
runTask: () => Promise<void>;
}

const IteractionButton: FC<IData> = ({ taskDescription, runTask }) => {
const InteractionButton: FC<IData> = ({ taskDescription, runTask }) => {
const [isBusy, setIsBusy] = useState<boolean>(false);
const [canRunTask, setCanRunTask] = useState<boolean>(true);

Expand Down Expand Up @@ -37,4 +37,4 @@ const IteractionButton: FC<IData> = ({ taskDescription, runTask }) => {
);
};

export default IteractionButton;
export default InteractionButton;
21,876 changes: 18,675 additions & 3,201 deletions samples/apps/copilot-chat-app/importdocument/sample-docs/ms10k.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion samples/apps/hugging-face-http-server/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Local Hugging Face Model Inteference Server
# Local Hugging Face Model Inference Server

> [!IMPORTANT]
> This learning sample is for educational purposes only and should not be used in any production
Expand Down
4 changes: 2 additions & 2 deletions samples/dotnet/kernel-syntax-examples/Example16_CustomLLM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private static async Task CustomTextCompletionWithSKFunctionAsync()

var textValidationFunction = kernel.CreateSemanticFunction(FunctionDefinition);

var result = await textValidationFunction.InvokeAsync("I mised the training sesion this morning");
var result = await textValidationFunction.InvokeAsync("I mised the training session this morning");
Console.WriteLine(result);

// Details of the my custom model response
Expand All @@ -121,7 +121,7 @@ private static async Task CustomTextCompletionAsync()
Console.WriteLine("======== Custom LLM - Text Completion - Raw ========");
var completionService = new MyTextCompletionService();

var result = await completionService.CompleteAsync("I missed the training sesion this morning", new CompleteRequestSettings());
var result = await completionService.CompleteAsync("I missed the training session this morning", new CompleteRequestSettings());

Console.WriteLine(result);
}
Expand Down
Loading

0 comments on commit de74668

Please sign in to comment.