Giter Site home page Giter Site logo

momegas / megabots Goto Github PK

View Code? Open in Web Editor NEW
334.0 13.0 36.0 144 KB

๐Ÿค– 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 ๐Ÿซต

License: MIT License

Python 96.76% Makefile 3.24%
chatbot faiss gpt-35-turbo gpt-4 langchain llama pinecone prompt-engineering s3 fastapi

megabots's Introduction

๐Ÿค– Megabots

Tests Python Version Code style: black License

๐Ÿค– 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 ๐Ÿซต

The Megabots library can be used to create bots that:

  • โŒš๏ธ are production ready, in minutes
  • ๐Ÿ—‚๏ธ can answer questions over documents
  • ๐Ÿ’พ can connect to vector databases
  • ๐ŸŽ–๏ธ automatically expose the bot as a rebust API using FastAPI (early release)
  • ๐Ÿ“ automatically expose the bot as a UI using Gradio

๐Ÿค– Megabots is backed by some of the most famous tools for productionalising AI. It uses LangChain for managing LLM chains, langchain-serve to create a production ready API, Gradio to create a UI. At the moment it uses OpenAI to generate answers, but we plan to support other LLMs in the future.

Getting started

Note: This is a work in progress. The API might change.

pip install megabots
from megabots import bot
import os

os.environ["OPENAI_API_KEY"] = "my key"

# Create a bot ๐Ÿ‘‰ with one line of code. Automatically loads your data from ./index or index.pkl.
# Keep in mind that you need to have one or another.
qnabot = bot("qna-over-docs")

# Ask a question
answer = qnabot.ask("How do I use this bot?")

# Save the index to save costs (GPT is used to create the index)
qnabot.save_index("index.pkl")

# Load the index from a previous run
qnabot = bot("qna-over-docs", index="./index.pkl")

# Or create the index from a directory of documents
qnabot = bot("qna-over-docs", index="./index")

# Change the model
qnabot = bot("qna-over-docs", model="text-davinci-003")

Changing the bot's prompt

You can change the bots promnpt to customize it to your needs. In the qna-over-docs type of bot you will need to pass 2 variables for the context (knwoledge searched from the index) and the question (the human question).

from megabots import bot

prompt = """
Use the following pieces of context to answer the question at the end.
If you don't know the answer, just say that you don't know, don't try to make up an answer.
Answer in the style of Tony Stark.

{context}

Question: {question}
Helpful humorous answer:"""

qnabot = bot("qna-over-docs", index="./index.pkl", prompt=prompt)

qnabot.ask("what was the first roster of the avengers?")

Working with memory

You can easily add memory to your bot using the memory parameter. It accepts a string with the type of the memory to be used. This defaults to some sane dafaults. Should you need more configuration, you can use the memory function and pass the type of memory and the configuration you need.

from megabots import bot

qnabot = bot("qna-over-docs", index="./index.pkl", memory="conversation-buffer")

print(qnabot.ask("who is iron man?"))
print(qnabot.ask("was he in the first roster?"))
# Bot should understand who "he" refers to.

Or using the memoryfactory function

from megabots import bot, memory

mem("conversation-buffer-window", k=5)

qnabot = bot("qna-over-docs", index="./index.pkl", memory=mem)

print(qnabot.ask("who is iron man?"))
print(qnabot.ask("was he in the first roster?"))

NOTE: For the qna-over-docs bot, when using memory and passing your custom prompt, it is important to remember to pass one more variable to your custom prompt to facilitate for chat history. The variable name is history.

from megabots import bot

prompt = """
Use the following pieces of context to answer the question at the end.
If you don't know the answer, just say that you don't know, don't try to make up an answer.

{context}

{history}
Human: {question}
AI:"""

qnabot = bot("qna-over-docs", prompt=prompt, index="./index.pkl", memory="conversation-buffer")

print(qnabot.ask("who is iron man?"))
print(qnabot.ask("was he in the first roster?"))

Using Megabots with Milvus (more DBs comming soon)

Megabots bot can also use Milvus as a backend for its search engine. You can find an example of how to do it below.

In order to run Milvus you need to follow this guide to download a docker compose file and run it. The command is:

wget https://raw.githubusercontent.com/milvus-io/pymilvus/v2.2.7/examples/hello_milvus.py

You can then install Attu as a management tool for Milvus

from megabots import bot

# Attach a vectorstore by passing the name of the database. Default port for milvus is 19530 and default host is localhost
# Point it to your files directory so that it can index the files and add them to the vectorstore
bot = bot("qna-over-docs", index="./examples/files/", vectorstore="milvus")

bot.ask("what was the first roster of the avengers?")

Or use the vectorstore factory function for more customisation

from megabots import bot, vectorstore

milvus = vectorstore("milvus", host="localhost", port=19530)

bot = bot("qna-over-docs", index="./examples/files/", vectorstore=milvus)

Exposing an API with langchain-serve

You can also expose the bot endpoints locally using langchain-serve. A sample file api.py is provided in the megabots folder.

To expose the API locally, you can do

lc-serve deploy local megabots.api

You should then be able to visit http://localhost:8000/docs to see & interact with the API documentation.

To deploy your API to the cloud, you can do and connect to the API using the endpoint provided in the output.

lc-serve deploy jcloud megabots.api
Show command output
โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ App ID       โ”‚                                 langchain-dec14439a6                                 โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ Phase        โ”‚                                       Serving                                        โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ Endpoint     โ”‚                      https://langchain-dec14439a6.wolf.jina.ai                       โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ App logs     โ”‚                               dashboards.wolf.jina.ai                                โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ Swagger UI   โ”‚                    https://langchain-dec14439a6.wolf.jina.ai/docs                    โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ OpenAPI JSON โ”‚                https://langchain-dec14439a6.wolf.jina.ai/openapi.json                โ”‚
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

You can read more about langchain-serve here.

Exposing a Gradio chat-like interface

You can expose a gradio UI for the bot using create_interface function. Assuming your file is called ui.py run gradio qnabot/ui.py to run the UI locally. You should then be able to visit http://127.0.0.1:7860 to see the API documentation.

from megabots import bot, create_interface

demo = create_interface(bot("qna-over-docs"))

Customising bot

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.

Argument Description
task The type of bot to create. Available options: qna-over-docs. More comming soon
index Specifies the index to use for the bot. It can either be a saved index file (e.g., index.pkl) or a directory of documents (e.g., ./index). In the case of the directory the index will be automatically created. If no index is specified bot will look for index.pkl or ./index
model The name of the model to use for the bot. You can specify a different model by providing its name, like "text-davinci-003". Supported models: gpt-3.5-turbo (default),text-davinci-003 More comming soon.
prompt A string template for the prompt, which defines the format of the question and context passed to the model. The template should include placeholder variables like so: context, {question} and in the case of using memory history.
memory The type of memory to be used by the bot. Can be a string with the type of the memory or you can use memory factory function. Supported memories: conversation-buffer, conversation-buffer-window
vectorstore The vectorstore to be used for the index. Can be a string with the name of the databse or you can use vectorstore factory function. Supported DBs: milvus.

| sources | When sources is True the bot will also include sources in the response. A known issue exists, where if you pass a custom prompt with sources the code breaks. |

How QnA bot works

Large language models (LLMs) are powerful, but they can't answer questions about documents they haven't seen. If you want to use an LLM to answer questions about documents it was not trained on, you have to give it information about those documents. To solve this, we use "retrieval augmented generation."

In simple terms, when you have a question, you first search for relevant documents. Then, you give the documents and the question to the language model to generate an answer. To make this work, you need your documents in a searchable format (an index). This process involves two main steps: (1) preparing your documents for easy querying, and (2) using the retrieval augmented generation method.

qna-over-docs uses FAISS to create an index of documents and GPT to generate answers.

sequenceDiagram
    actor User
    participant API
    participant LLM
    participant Vectorstore
    participant IngestionEngine
    participant DataLake
    autonumber

    Note over API, DataLake: Ingestion phase
    loop Every X time
    IngestionEngine ->> DataLake: Load documents
    DataLake -->> IngestionEngine: Return data
    IngestionEngine -->> IngestionEngine: Split documents and Create embeddings
    IngestionEngine ->> Vectorstore: Store documents and embeddings
    end

    Note over API, DataLake: Generation phase

    User ->> API: Receive user question
    API ->> Vectorstore: Lookup documents in the index relevant to the question
    API ->> API: Construct a prompt from the question and any relevant documents
    API ->> LLM: Pass the prompt to the model
    LLM -->> API: Get response from model
    API -->> User: Return response

How to contribute?

We welcome any suggestions, problem reports, and contributions! For any changes you would like to make to this project, we invite you to submit an issue.

For more information, see CONTRIBUTING instructions.

megabots's People

Contributors

deepankarm avatar momegas avatar ranms25 avatar stavrostheocharis avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

megabots's Issues

Add GPT4 as a supported model

Is your feature request related to a problem? Please describe.
Make GPT4 available in the library with:

qnabot = bot("qna-over-docs", model="<GPT4 model>")

Describe the solution you'd like
Same as above

Describe alternatives you've considered
NA

Additional context
NA

Exposing API - Multiprocessing error

I've created a main.app file as described in README file

from megabots import bot, create_api

app = create_api(bot("qna-over-docs"))

then I just run uvicorn to get this issue

Using model: gpt-3.5-turbo
Process SpawnProcess-1:
Traceback (most recent call last):
  File "/usr/lib/python3.10/multiprocessing/process.py", line 314, in _bootstrap
    self.run()
  File "/usr/lib/python3.10/multiprocessing/process.py", line 108, in run
    self._target(*self._args, **self._kwargs)
  File "/home/moamen/.local/lib/python3.10/site-packages/uvicorn/_subprocess.py", line 76, in subprocess_started
    target(sockets=sockets)
  File "/home/moamen/.local/lib/python3.10/site-packages/uvicorn/server.py", line 59, in run
    return asyncio.run(self.serve(sockets=sockets))
  File "/usr/lib/python3.10/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "/usr/lib/python3.10/asyncio/base_events.py", line 646, in run_until_complete
    return future.result()
  File "/home/moamen/.local/lib/python3.10/site-packages/uvicorn/server.py", line 66, in serve
    config.load()
  File "/home/moamen/.local/lib/python3.10/site-packages/uvicorn/config.py", line 471, in load
    self.loaded_app = import_from_string(self.app)
  File "/home/moamen/.local/lib/python3.10/site-packages/uvicorn/importer.py", line 21, in import_from_string
    module = importlib.import_module(module_str)
  File "/usr/lib/python3.10/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "/home/moamen/megabots/main.py", line 3, in <module>
    app = create_api(bot("qna-over-docs"))
    raise RuntimeError(
RuntimeError:
            Impossible to find a valid index.
            Either provide a valid path to a pickle file or a directory.

Environment:

Python: 3.10
Pip: 23.1
OS: WSL - Ubuntu

Error in langchain.embeddings load

Describe the bug
When I run in the notebook the "qnabot = bot("qna-over-docs", "./index")" I get an error

Retrying langchain.embeddings.openai.embed_with_retry.._embed_with_retry in 4.0 seconds as it raised RateLimitError: You exceeded your current quota, please check your plan and billing details..

Import error

Hi, upon import:

from qnabot.QnABot import QnABot

I receive the error:

import os, sys
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/Users/xxxxxx/miniforge3/lib/python3.9/site-packages/qnabot/__init__.py", line 1, in <module>
    from .QnABot import QnABot
  File "/Users/xxxxxx/miniforge3/lib/python3.9/site-packages/qnabot/QnABot.py", line 12, in <module>
    class QnABot:
  File "/Users/xxxxxx/miniforge3/lib/python3.9/site-packages/qnabot/QnABot.py", line 16, in QnABot
    index: str | None = None,
TypeError: unsupported operand type(s) for |: 'type' and 'NoneType'

I am on an M1 Mac if that makes a difference.

Create docs site

Is your feature request related to a problem? Please describe.
Yup! The problem of not having good documentation. We need to create a nice site

Describe the solution you'd like
Well... Docs!

Describe alternatives you've considered
No alternatives when docs is on the table...

Additional context
NA

support azure openai api

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

I have an azure openai api account, but I don't see where it can be used

Describe the solution you'd like
A clear and concise description of what you want to happen.

If not, can you access the azure openai api?

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

It may be possible to add a proxy, but I haven't tested it
https://github.com/stulzq/azure-openai-proxy

Additional context
Add any other context or screenshots about the feature request here.

Add option for models to provide sources in QnA

Is your feature request related to a problem? Please describe.
During bot instanciation the user should be able to specify if they need sources in their responses. This is especially true with the qna-over-docs bots.

Describe the solution you'd like

qnabot = bot("qna-over-docs", sources=True)

You can use the load_qa_with_sources_chain from LangChain but in my tests it failed when I tries to change the prompt. Maybe I was doing something wrong, but I also opened an issue

Describe alternatives you've considered
There is a chance that the ready-made chains provided by LangChain won't be enough after some time. But this is for later I think.

Additional context
NA

Integrate with langchain-serve?

Is your feature request related to a problem? Please describe.
Great work with megabots. Looks like a nice & easy API to develop LLM-based bots. What plans do you have to deploy the bots without adding infrastructure headache?

Describe the solution you'd like
I'd recommend integrating with langchain-serve.

  • Exposes APIs from function definitions locally as well as on the cloud.
  • Very few lines of code changes, ease of development remains the same as local.
  • Supports both REST & Websocket endpoints
  • Serverless/autoscaling endpoints with automatic tls certs.
  • Real-time streaming, human-in-the-loop support

Alternative APIs

Title

Phind and Poe

Problem Description

Some countries have no direct access to OpenAI, and some of us have no paid accounts etc., but Poe provides access to them as well as Claude, and Phind is great for coding and has special prompting on the backend and up to 6000characters currently. It would be very helpful if we could use API keys for these services for our agents in an app like this. Thank you.

Proposed Solution

Python wrapper for poe-api and/or Phind

Alternatives Considered

No response

Additional Context

No response

Acknowledgements

  • I have searched the existing issues to make sure this feature has not been requested yet
  • I have provided enough information for the maintainers to understand and evaluate the feature request

Support for Open Assistant

Is your feature request related to a problem? Please describe.
QnABot should also be able to choose OpenAssistant as a model for QnA because it's open source and rocks!

Describe the solution you'd like
Add a choice in QnABot instantiation to choose a model. Something like below:

bot = QnABot(directory="./mydata", model="OpenAssistant")

Describe alternatives you've considered
__

Additional context
At the moment Open Assistant is not part of LangChain, so maybe we will need to add it before implementing this in this repo.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.