Spaces:
Runtime error
Runtime error
🦾🤖🤳 Lets go bots
Browse files
README.md
CHANGED
@@ -1,11 +1,15 @@
|
|
1 |
-
#
|
2 |
|
3 |
[](https://github.com/momegas/qnabot/actions/workflows/python-package.yml)
|
4 |
|
5 |
-
|
|
|
|
|
|
|
|
|
6 |
|
7 |
```bash
|
8 |
-
pip install
|
9 |
```
|
10 |
|
11 |
```python
|
|
|
1 |
+
# 🦾🤖🤳 Mega Bots
|
2 |
|
3 |
[](https://github.com/momegas/qnabot/actions/workflows/python-package.yml)
|
4 |
|
5 |
+
Here is an example of what you build with this library: [Demo](https://huggingface.co/spaces/momegas/megas-bot)
|
6 |
+
|
7 |
+
🦾🤖🤳 Megabots provides ready made production ready bots so you don't have to build them from scratch 🤯
|
8 |
+
|
9 |
+
Note: This is a work in progress. The API is not stable and will change.
|
10 |
|
11 |
```bash
|
12 |
+
pip install megabots
|
13 |
```
|
14 |
|
15 |
```python
|
setup.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
from setuptools import setup, find_packages
|
2 |
|
3 |
-
VERSION = "0.0.
|
4 |
|
5 |
setup(
|
6 |
-
name="
|
7 |
version=VERSION,
|
8 |
packages=find_packages(),
|
9 |
install_requires=[
|
@@ -19,7 +19,7 @@ setup(
|
|
19 |
description="Create a question answering over docs bot with one line of code.",
|
20 |
long_description=open("README.md").read(),
|
21 |
long_description_content_type="text/markdown",
|
22 |
-
url="https://github.com/momegas/
|
23 |
classifiers=[
|
24 |
# Choose appropriate classifiers from
|
25 |
# https://pypi.org/classifiers/
|
|
|
1 |
from setuptools import setup, find_packages
|
2 |
|
3 |
+
VERSION = "0.0.6"
|
4 |
|
5 |
setup(
|
6 |
+
name="megabots",
|
7 |
version=VERSION,
|
8 |
packages=find_packages(),
|
9 |
install_requires=[
|
|
|
19 |
description="Create a question answering over docs bot with one line of code.",
|
20 |
long_description=open("README.md").read(),
|
21 |
long_description_content_type="text/markdown",
|
22 |
+
url="https://github.com/momegas/megabots",
|
23 |
classifiers=[
|
24 |
# Choose appropriate classifiers from
|
25 |
# https://pypi.org/classifiers/
|