Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,127 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- conversational-ai
|
| 5 |
+
- chatbot
|
| 6 |
+
- logai
|
| 7 |
+
- transformers
|
| 8 |
+
- friendly-ai
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# NeKa-1
|
| 12 |
+
|
| 13 |
+

|
| 14 |
+

|
| 15 |
+

|
| 16 |
+
|
| 17 |
+
NeKa-1 is the first AI model developed by LogAI, designed to provide conversational responses, intelligent assistance, and guidance across multiple topics. NeKa maintains a friendly, professional, and consistent personality, ideal for chatbots, AI platforms, and educational applications.
|
| 18 |
+
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
## Model Details
|
| 22 |
+
|
| 23 |
+
- **Model type:** Causal Language Model (text generation)
|
| 24 |
+
- **Framework:** Hugging Face Transformers / PyTorch
|
| 25 |
+
- **Languages:** English, Spanish
|
| 26 |
+
- **Personality:** Friendly, approachable, professional, sometimes playful
|
| 27 |
+
- **Developer:** LogAI S.A. de C.V.
|
| 28 |
+
- **License:** MIT
|
| 29 |
+
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
## Personality
|
| 33 |
+
|
| 34 |
+
NeKa-1 responds with a friendly, approachable, and professional tone, incorporating:
|
| 35 |
+
- Light humor when appropriate
|
| 36 |
+
- Clear, step-by-step explanations
|
| 37 |
+
- Context-aware responses
|
| 38 |
+
- Consistent style and vocabulary
|
| 39 |
+
|
| 40 |
+
---
|
| 41 |
+
|
| 42 |
+
## Usage Example
|
| 43 |
+
|
| 44 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 45 |
+
import torch
|
| 46 |
+
|
| 47 |
+
# Load NeKa-1
|
| 48 |
+
tokenizer = AutoTokenizer.from_pretrained("LogAIPlatform/NeKa-1")
|
| 49 |
+
model = AutoModelForCausalLM.from_pretrained("LogAIPlatform/NeKa-1")
|
| 50 |
+
|
| 51 |
+
# Generate response
|
| 52 |
+
input_text = "Hello NeKa, can you tell me a joke?"
|
| 53 |
+
inputs = tokenizer(input_text, return_tensors="pt")
|
| 54 |
+
outputs = model.generate(**inputs, max_length=100)
|
| 55 |
+
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 56 |
+
|
| 57 |
+
> Replace "LogAIPlatform/NeKa-1" with your Hugging Face model path.
|
| 58 |
+
|
| 59 |
+
---
|
| 60 |
+
|
| 61 |
+
## Demo / Test in Browser
|
| 62 |
+
|
| 63 |
+
You can test NeKa-1 in a Hugging Face Space or using your local Python environment:
|
| 64 |
+
|
| 65 |
+
from transformers import pipeline
|
| 66 |
+
|
| 67 |
+
chat = pipeline("text-generation", model="LogAIPlatform/NeKa-1")
|
| 68 |
+
response = chat("Hello NeKa, explain quantum computing in simple terms.", max_length=150)
|
| 69 |
+
print(response[0]['generated_text'])
|
| 70 |
+
|
| 71 |
+
---
|
| 72 |
+
|
| 73 |
+
## Requirements
|
| 74 |
+
|
| 75 |
+
- Python >= 3.8
|
| 76 |
+
- transformers >= 4.30
|
| 77 |
+
- torch >= 2.0
|
| 78 |
+
|
| 79 |
+
---
|
| 80 |
+
|
| 81 |
+
## Capabilities
|
| 82 |
+
|
| 83 |
+
- Natural conversation in multiple languages
|
| 84 |
+
- Contextual understanding of queries
|
| 85 |
+
- Step-by-step reasoning and explanations
|
| 86 |
+
- Friendly guidance for users
|
| 87 |
+
- Easy integration via Hugging Face Transformers
|
| 88 |
+
|
| 89 |
+
---
|
| 90 |
+
|
| 91 |
+
## Limitations
|
| 92 |
+
|
| 93 |
+
- Limited knowledge cutoff (base model does not have real-time updates)
|
| 94 |
+
- Responses may occasionally lack accuracy in specialized technical topics
|
| 95 |
+
- Model behavior depends on input prompts; ambiguous prompts may produce generic answers
|
| 96 |
+
- Not a replacement for professional advice (legal, medical, financial, etc.)
|
| 97 |
+
|
| 98 |
+
---
|
| 99 |
+
|
| 100 |
+
## References
|
| 101 |
+
|
| 102 |
+
Official platform: https://LogAIPlatform.Blogspot.com
|
| 103 |
+
Documentation & tutorials: upcoming section on https://LogAIPlatform.Blogspot.com
|
| 104 |
+
|
| 105 |
+
---
|
| 106 |
+
|
| 107 |
+
## License
|
| 108 |
+
|
| 109 |
+
NeKa-1 is licensed under the MIT License. You may use, modify, and redistribute this model, provided that credit is given to LogAI.
|
| 110 |
+
|
| 111 |
+
MIT License
|
| 112 |
+
|
| 113 |
+
Copyright (c) 2026 LogAI S.A. de C.V.
|
| 114 |
+
|
| 115 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 116 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 117 |
+
in the Software without restriction, including without limitation the rights
|
| 118 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 119 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 120 |
+
furnished to do so, subject to the following conditions:
|
| 121 |
+
|
| 122 |
+
The above copyright notice and this permission notice shall be included in all
|
| 123 |
+
copies or substantial portions of the Software.
|
| 124 |
+
|
| 125 |
+
---
|
| 126 |
+
|
| 127 |
+
> Note: This is the base model (NeKa-1). Future versions will include enhanced context understanding, multilingual capabilities, and advanced reasoning features.
|