J.O.S.I.E.: Just an Outstandingly Smart Intelligent Entity

This mdoel is for personal use, ONLY!!!

Fine-tuned from the Llama V2 Chat Model, JOSIE is specialized in function calling tasks. This project utilized a personalized dataset from glaiveai/glaive-function-calling to enhance the model's capability in understanding and executing function calls. A new model is in the pipeline, further fine-tuned to specialize in function calls for web searching, smart home control, file writing on the local machine, weather condition retrieval and summarization, unread email retrieval and summarization, email deletion, and interacting with MetaGPT. To get closer to my version of Tony Starks, J.A.R.V.I.S.

Model

Fine-tuning

The model was trained with the following parameters:

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "Isaak-Carter/JOSIE_FC_7B_v30"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)

# Your code for interaction with JOSIE

license: apache-2.0 pipeline_tag: conversational