Skip to content

Commit

Permalink
docs: fix typo (#45)
Browse files Browse the repository at this point in the history
* docs: fix typo #3

* docs: fix typo #4
  • Loading branch information
sreyasaju authored Dec 7, 2020
1 parent 5a9cd0b commit f6ef221
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions docs/mdbook/src/adapters.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,50 +8,50 @@ As of Sugaroid `v0.7`, it has:

* `BoolAdapter`: Processes Boolean based answers
* `AkinatorAdapter`: Adapter which ports the wrapper of the Akinator game to Sugaroid
* `HangmanAdapter`: Plays hangman with you
* `OrAdapter`: Selects a random operand of the provided statement
* `OkayAdapter`: Handles statements with a plain old okay
* `ByeAdapter`: Destroys Sugaroid on bye
* `TimeAdapter`: Provides time and time related functions except time conversion
* `CurrencyAdapter`: Gives a random response, because Sugaroid tries not to say I don't know
* `LearnAdapter`: a specific adapter for learning responses
* `TriviaAdapter`: Plays a short game of trivia
* `WhoAdapter`: Handles statements with 'who' as one of the tokens
* `NewsAdapter`: Ports the `SugaroidNews` Wrapper for easier access by the `SugaroidChatbot` Class
* `JokeAdapter`: Gets a random joke from the Chuck Norris Database
* `PlayAdapter`: `[DEPRECATED]` Plays a game on desktops only
* `CanAdapter`: Processes statements which features a Modal question \(can, may\)
* `BecauseAdapter`: Processes statements which starts with Because or gives a reason
* `ReReverseAdapter`: Processes statements featuring conversational flow. It scans the previous statements

and takes a cosine similarity of the statements, and `TFiD` Vector cross product to get

the most probable answer

* `ReverseAdapter:` A random adapter. Top Secret
* `MyNameAdapter`: Handles sentences featuring 'my' and 'name'
* `MeAdapter`: Processes the statements showing possessive
* `AboutAdapter`: Defines the personality of sugaroid
* `WikiAdapter`: Handles Wikipedia based questions
* `DoLikeAdapter`: Handles likes of Sugaroid
* `FeelAdapter`: Handles sentences containing the word feel
* `HangmanAdapter`: Plays hangman with you
* `OrAdapter`: Selects a random operand of the provided statement
* `OkayAdapter`: Handles statements with a plain old okay
* `ByeAdapter`: Destroys Sugaroid on bye
* `TimeAdapter`: Provides time and time related functions except time conversion
* `CurrencyAdapter`: Gives a random response, because Sugaroid tries not to say I don't know
* `LearnAdapter`: a specific adapter for learning responses
* `TriviaAdapter`: Plays a short game of trivia
* `WhoAdapter`: Handles statements with 'who' as one of the tokens
* `NewsAdapter`: Ports the `SugaroidNews` Wrapper for easier access by the `SugaroidChatbot` Class
* `JokeAdapter`: Gets a random joke from the Chuck Norris Database
* `PlayAdapter`: `[DEPRECATED]` Plays a game on desktops only
* `CanAdapter`: Processes statements which features a Modal question \(can, may\)
* `BecauseAdapter`: Processes statements which starts with Because or gives a reason
* `ReReverseAdapter`: Processes statements featuring conversational flow. It scans the previous statements

and takes a cosine similarity of the statements, and `TFiD` Vector cross product to get

the most probable answer

* `ReverseAdapter:` A random adapter. Top Secret
* `MyNameAdapter`: Handles sentences featuring 'my' and 'name'
* `MeAdapter`: Processes the statements showing possessive behavior
* `AboutAdapter`: Defines the personality of sugaroid
* `WikiAdapter`: Handles Wikipedia based questions
* `DoLikeAdapter`: Handles likes of Sugaroid
* `FeelAdapter`: Handles sentences containing the word 'feel'
* `DoAdapter`: Processes statements beginning with 'Do' and 'know'
* `EmotionAdapter`: Handles positive and negative emotional statements
* `DisAdapter`: A complex algorithm sorting the words beginning with negative based on the probability.
* `DisAdapter`: A complex algorithm sorting the words beginning with negative based on the probability.

and achieving a similar confidence ratio of the word percentage.
and achieving a similar confidence ratio of the word percentage.

The `DisAdapter` keeps the confidence below 0.5 so that the `BestAdapte`r may find some
The `DisAdapter` keeps the confidence below 0.5 so that the `BestAdapter` may find some

other answer similar to
other answer similar to

* `TwoWordAdapte`: Handles sentences having two words
* `OneWordAdapter`: Logical adapter for processing data with one words
* `DebugAdapter`: Internal administrator feature to debug Sugaroid statements
* `WhyWhenAdapter`: Processes `wh`-adverbs
* `ReaderAdapter`: Logical adapter for processing data with one words
* `ImitateAdapter`: Handles statements involving imitations of some sentences
* `FunAdapter`: Gives a random response, because Sugaroid tries not to say I don't know
* `TwoWordAdapter`: Handles sentences having two words
* `OneWordAdapter`: Logical adapter for processing data with one words
* `DebugAdapter`: Internal administrator feature to debug Sugaroid statements
* `WhyWhenAdapter`: Processes `wh`-adverbs
* `ReaderAdapter`: Reads documentation and extracts information
* `ImitateAdapter`: Handles statements involving imitations of some sentences
* `FunAdapter`: Gives a random response, because Sugaroid tries not to say I don't know
* `UnitConversion`: The `UnitConversion` logic adapter parse inputs to convert values

#### Boolean Adapter \(`sugaroid.brain.bool.BooleanAdapter`\)
Expand All @@ -64,4 +64,4 @@ The Akinator Adapter is a wrapper class, that takes the acts like a server with

#### Hangman Adapter \(`sugaroid.brain.aki.Hangman`\)

The Hangman Adapter has the code ehich is used for playing Hangman with the user.
The Hangman Adapter has the code ehich is used for playing Hangman with the user.

0 comments on commit f6ef221

Please sign in to comment.