An open API service indexing awesome lists of open source software.

https://github.com/ovoshatchery/ovos-solver-pandorabots-plugin


https://github.com/ovoshatchery/ovos-solver-pandorabots-plugin

maintainer-wanted

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Pandorabots

Give Mycroft some sass with Pandorabots

Over 100 chatbots from https://github.com/OpenJarbas/all_the_chatbots

## Examples
* "Do you like ice cream"
* "Do you like dogs"
* "I have a jump rope"

## Usage

Spoken answers api w

```python
from ovos_solver_pandorabots_plugin import PandoraBotsSolver

d = PandoraBotsSolver()
sentence = d.spoken_answer("hello")
print(sentence)
# Hi there!

sentence = d.spoken_answer("Do you like ice cream", {"lang": "pt-pt"})
print(sentence)
# O que queres mesmo saber?
```