angadbawa / Scientifico

💬NLP chatbot answering questions about science.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AI Junior Developer (Intern) Test

Welcome! and thank you for applying!

Requirement

The current project has the blueprint structure of an AI App.

Your mission is to implement an 💬NLP chatbot answering questions about science.

You will add your logic to the main.py file inside the execute function.

def execute(request: SimpleText, ray: OpenfabricExecutionRay) -> SimpleText:
    output = []
    for text in request.text:        
        response = '' # <<< --Your magic goes here
        output.append(response)

    return SimpleText(dict(text=output))

Constraints and restrictions

You are free to use any package or library you see feet as long as you follow these rules:

  • 👎 You can't call any external service (e.g. chatGPT)
  • 👎 You can't copy and paste from other peoples work

Run

The application can be executed in two different ways:

  • locally by running the start.sh
  • on in a docker container using Dockerfile

Submission

Your solution must be uploaded on GitHub, and submit us the link in max 1 week after receiving the task.

Note

Keep in mind that this is the project that will be used to evaluate your skills. So we do expect you to make sure that the app is fully functional and doesn't have any obvious missing pieces.

About

💬NLP chatbot answering questions about science.

License:MIT License


Languages

Language:Python 97.6%Language:Dockerfile 2.1%Language:Shell 0.4%