File size: 2,356 Bytes
9f3bc86 830ae8b 9f3bc86 830ae8b 9f3bc86 830ae8b 9f3bc86 830ae8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
---
base_model: allenai/OLMo-2-1124-13B-Instruct
pipeline_tag: text-generation
tags:
- text-generation
- ai-assistant
- scientific-research
- transformers
datasets:
- fka/awesome-chatgpt-prompts
- HumanLLMs/Human-Like-DPO-Dataset
- NovaSky-AI/Sky-T1_data_17k
metrics:
- accuracy
- perplexity
- code_eval
library_name: transformers
license: mit
widget:
- text: "What is quantum entanglement?"
- text: "Write a summary of the theory of relativity."
---
# Lilith: AI Assistant Powered by OLMo
Lilith is a versatile and powerful AI assistant designed to perform a wide range of tasks, including text generation, answering scientific queries, solving mathematical problems, and more. Built using the OLMo model from AllenAI, Lilith is ideal for researchers, developers, and AI enthusiasts.
## Features
- **Text Generation**: Create human-like responses to various prompts.
- **Scientific Knowledge**: Provide detailed explanations for scientific and technical topics.
- **Task Management**: Manage tasks with add, list, and recall commands.
- **Command Execution**: Run system-level commands directly from the interface.
- **Math Solver**: Evaluate and compute complex mathematical expressions.
---
## How to Use
1. **Clone the Repository**:
```bash
git clone https://huggingface.co/jawk5/GJMiii
cd GJMiii
```
2. **Set Up the Virtual Environment**:
```bash
python3 -m venv venv
source venv/bin/activate # On Windows: venv\\Scripts\\activate
```
3. **Install Dependencies**:
```bash
pip install transformers
```
4. **Run Lilith**:
```bash
python lilith.py
```
---
## Example Commands
### Task Management
```plaintext
Lilith> add_task Complete project documentation
Task 'Complete project documentation' added.
Lilith> list_tasks
- Complete project documentation
```
### Scientific Inquiry
```plaintext
Lilith> science Explain quantum mechanics.
Lilith: Quantum mechanics is a fundamental theory in physics that describes...
```
### Chat Interaction
```plaintext
Lilith> chat Hi, who are you?
Lilith: I am Lilith, your AI assistant. How can I help you today?
```
---
## Dependencies
- [Transformers](https://huggingface.co/docs/transformers/)
- Python 3.7 or higher
---
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
|