Text Generation
Transformers
ai-assistant
scientific-research
jawk5 commited on
Commit
830ae8b
·
verified ·
1 Parent(s): 9f3bc86

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -9
README.md CHANGED
@@ -10,8 +10,6 @@ datasets:
10
  - fka/awesome-chatgpt-prompts
11
  - HumanLLMs/Human-Like-DPO-Dataset
12
  - NovaSky-AI/Sky-T1_data_17k
13
- - agibot-world/AgiBotWorld-Alpha
14
- - DAMO-NLP-SG/multimodal_textbook
15
  metrics:
16
  - accuracy
17
  - perplexity
@@ -19,20 +17,21 @@ metrics:
19
  library_name: transformers
20
  license: mit
21
  widget:
22
- - text: "Introduce yourself."
23
  - text: "What is quantum entanglement?"
 
24
  ---
25
- # GJMiii: AI Assistant Powered by OLMo
26
 
27
- GJMiii is a versatile AI assistant built on the OLMo model from AllenAI. It is designed for advanced natural language generation, scientific research, and task automation.
 
 
28
 
29
  ## Features
30
 
31
  - **Text Generation**: Create human-like responses to various prompts.
32
- - **Scientific Knowledge**: Generate detailed explanations for scientific queries.
33
- - **Task Management**: Manage and recall tasks efficiently.
34
- - **Command Execution**: Execute system commands directly.
35
- - **Math Solver**: Evaluate complex mathematical expressions.
36
 
37
  ---
38
 
@@ -42,3 +41,58 @@ GJMiii is a versatile AI assistant built on the OLMo model from AllenAI. It is d
42
  ```bash
43
  git clone https://huggingface.co/jawk5/GJMiii
44
  cd GJMiii
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  - fka/awesome-chatgpt-prompts
11
  - HumanLLMs/Human-Like-DPO-Dataset
12
  - NovaSky-AI/Sky-T1_data_17k
 
 
13
  metrics:
14
  - accuracy
15
  - perplexity
 
17
  library_name: transformers
18
  license: mit
19
  widget:
 
20
  - text: "What is quantum entanglement?"
21
+ - text: "Write a summary of the theory of relativity."
22
  ---
 
23
 
24
+ # Lilith: AI Assistant Powered by OLMo
25
+
26
+ 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.
27
 
28
  ## Features
29
 
30
  - **Text Generation**: Create human-like responses to various prompts.
31
+ - **Scientific Knowledge**: Provide detailed explanations for scientific and technical topics.
32
+ - **Task Management**: Manage tasks with add, list, and recall commands.
33
+ - **Command Execution**: Run system-level commands directly from the interface.
34
+ - **Math Solver**: Evaluate and compute complex mathematical expressions.
35
 
36
  ---
37
 
 
41
  ```bash
42
  git clone https://huggingface.co/jawk5/GJMiii
43
  cd GJMiii
44
+ ```
45
+
46
+ 2. **Set Up the Virtual Environment**:
47
+ ```bash
48
+ python3 -m venv venv
49
+ source venv/bin/activate # On Windows: venv\\Scripts\\activate
50
+ ```
51
+
52
+ 3. **Install Dependencies**:
53
+ ```bash
54
+ pip install transformers
55
+ ```
56
+
57
+ 4. **Run Lilith**:
58
+ ```bash
59
+ python lilith.py
60
+ ```
61
+
62
+ ---
63
+
64
+ ## Example Commands
65
+
66
+ ### Task Management
67
+ ```plaintext
68
+ Lilith> add_task Complete project documentation
69
+ Task 'Complete project documentation' added.
70
+
71
+ Lilith> list_tasks
72
+ - Complete project documentation
73
+ ```
74
+
75
+ ### Scientific Inquiry
76
+ ```plaintext
77
+ Lilith> science Explain quantum mechanics.
78
+ Lilith: Quantum mechanics is a fundamental theory in physics that describes...
79
+ ```
80
+
81
+ ### Chat Interaction
82
+ ```plaintext
83
+ Lilith> chat Hi, who are you?
84
+ Lilith: I am Lilith, your AI assistant. How can I help you today?
85
+ ```
86
+
87
+ ---
88
+
89
+ ## Dependencies
90
+
91
+ - [Transformers](https://huggingface.co/docs/transformers/)
92
+ - Python 3.7 or higher
93
+
94
+ ---
95
+
96
+ ## License
97
+
98
+ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.