momegas commited on
Commit
6ec321a
•
1 Parent(s): c23b2e7

🦾🤖🤳 Lets go bots

Browse files
Files changed (2) hide show
  1. README.md +7 -3
  2. setup.py +3 -3
README.md CHANGED
@@ -1,11 +1,15 @@
1
- # QnA Bot
2
 
3
  [![Tests](https://github.com/momegas/qnabot/actions/workflows/python-package.yml/badge.svg)](https://github.com/momegas/qnabot/actions/workflows/python-package.yml)
4
 
5
- Create a question answering over docs bot with one line of code:
 
 
 
 
6
 
7
  ```bash
8
- pip install qnabot
9
  ```
10
 
11
  ```python
 
1
+ # 🦾🤖🤳 Mega Bots
2
 
3
  [![Tests](https://github.com/momegas/qnabot/actions/workflows/python-package.yml/badge.svg)](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.5"
4
 
5
  setup(
6
- name="qnabot",
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/qnabot",
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/