momegas commited on
Commit
5ccaabd
β€’
1 Parent(s): a42ba52

πŸš€ Release 0.0.9

Browse files
Files changed (2) hide show
  1. README.md +10 -8
  2. setup.py +1 -1
README.md CHANGED
@@ -5,21 +5,23 @@
5
 
6
  πŸ€– Megabots provides State-of-the-art, production ready LLM apps made mega-easy, so you don't have to build them from scratch 🀯 Create a bot, now 🫡
7
 
8
- πŸ‘‰ Join us on Discord: https://discord.gg/zkqDWk5S7P
9
- ✈️ Work is managed in this project: https://github.com/users/momegas/projects/5/views/2
10
 
11
  The Megabots library can be used to create bots that:
12
 
13
- - ⌚️ are production ready bots in minutes
14
  - πŸ—‚οΈ can answer questions over documents
15
- - πŸ§‘β€βš•οΈ can act personal assistants and use agents and tools (Coming soon)
16
- - πŸ—£οΈ can accept voice (Coming soon)
17
- - πŸ‘ validate and correct the outputs of large language models (Coming soon)
18
- - πŸ’° semanticly cache LLM Queries and reduce your LLM API Costs by 10x (Coming soon)
19
  - πŸ‹οΈ are mega-easily to train (Coming soon)
20
 
21
  πŸ€– Megabots is backed by some of the most famous tools for productionalising AI. It uses [LangChain](https://docs.langchain.com/docs/) for managing LLM chains, [FastAPI](https://fastapi.tiangolo.com/) to create a production ready API, [Gradio](https://gradio.app/) to create a UI. At the moment it uses [OpenAI](https://openai.com/) to generate answers, but we plan to support other LLMs in the future.
22
 
 
 
23
  Note: This is a work in progress. The API might change.
24
 
25
  ```bash
@@ -76,7 +78,7 @@ from megabots import bot, create_interface
76
  demo = create_interface(bot("qna-over-docs"))
77
  ```
78
 
79
- # Customising bot
80
 
81
  The `bot` function should serve as the starting point for creating and customising your bot. Below is a list of the available arguments in `bot`.
82
 
 
5
 
6
  πŸ€– Megabots provides State-of-the-art, production ready LLM apps made mega-easy, so you don't have to build them from scratch 🀯 Create a bot, now 🫡
7
 
8
+ - πŸ‘‰ Join us on Discord: https://discord.gg/zkqDWk5S7P
9
+ - ✈️ Work is managed in this project: https://github.com/users/momegas/projects/5/views/2
10
 
11
  The Megabots library can be used to create bots that:
12
 
13
+ - ⌚️ are production ready, in minutes
14
  - πŸ—‚οΈ can answer questions over documents
15
+ - πŸ§‘β€βš•οΈ can act as personal assistants and use tools (Coming soon)
16
+ - πŸ—£οΈ can accept voice as an input (Coming soon)
17
+ - πŸ‘ validate and correct the outputs of large language models using [guardrails](https://github.com/ShreyaR/guardrails) (Coming soon)
18
+ - πŸ’° semanticly cache LLM Queries and reduce your LLM API Costs by 10x using (Coming soon)
19
  - πŸ‹οΈ are mega-easily to train (Coming soon)
20
 
21
  πŸ€– Megabots is backed by some of the most famous tools for productionalising AI. It uses [LangChain](https://docs.langchain.com/docs/) for managing LLM chains, [FastAPI](https://fastapi.tiangolo.com/) to create a production ready API, [Gradio](https://gradio.app/) to create a UI. At the moment it uses [OpenAI](https://openai.com/) to generate answers, but we plan to support other LLMs in the future.
22
 
23
+ ### Getting started
24
+
25
  Note: This is a work in progress. The API might change.
26
 
27
  ```bash
 
78
  demo = create_interface(bot("qna-over-docs"))
79
  ```
80
 
81
+ ### Customising bot
82
 
83
  The `bot` function should serve as the starting point for creating and customising your bot. Below is a list of the available arguments in `bot`.
84
 
setup.py CHANGED
@@ -1,6 +1,6 @@
1
  from setuptools import setup, find_packages
2
 
3
- VERSION = "0.0.8"
4
 
5
  setup(
6
  name="megabots",
 
1
  from setuptools import setup, find_packages
2
 
3
+ VERSION = "0.0.9"
4
 
5
  setup(
6
  name="megabots",