Spaces:
Configuration error
Configuration error
Commit
·
ed75f58
1
Parent(s):
a9c62d5
Updated README with SHX info
Browse files
README.md
CHANGED
@@ -1,3 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# SHX-Auto: Multiversal System Builder
|
|
|
2 |
## 🤯 GPT-Neo-based automation terminal agent for quantum-native devs.
|
3 |
✨ By: subatomicERROR
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: SHX-Auto: Multiversal System Builder
|
3 |
+
emoji: 🤖
|
4 |
+
colorFrom: green
|
5 |
+
colorTo: blue
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: "3.0.0"
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
---
|
11 |
+
|
12 |
# SHX-Auto: Multiversal System Builder
|
13 |
+
|
14 |
## 🤯 GPT-Neo-based automation terminal agent for quantum-native devs.
|
15 |
✨ By: subatomicERROR
|
16 |
+
|
17 |
+
### Overview
|
18 |
+
|
19 |
+
SHX-Auto is a powerful, GPT-Neo-based automation terminal agent designed for quantum-native developers. It leverages the capabilities of the GPT-Neo model to provide intelligent and context-aware responses to your commands, making it an indispensable tool for rapid prototyping and development.
|
20 |
+
|
21 |
+
### Features
|
22 |
+
|
23 |
+
- **Intelligent Responses**: Utilizes the GPT-Neo model to generate context-aware and intelligent responses.
|
24 |
+
- **Gradio Interface**: User-friendly interface built with Gradio for easy interaction.
|
25 |
+
- **Customizable Configuration**: Easily configure the model's parameters to suit your needs.
|
26 |
+
- **Developer-Friendly**: Designed with quantum-native developers in mind, SHX-Auto is a versatile tool for building and testing applications.
|
27 |
+
|
28 |
+
### Usage
|
29 |
+
|
30 |
+
1. **Run the Application**:
|
31 |
+
- Open the Gradio interface by visiting the Hugging Face Space URL.
|
32 |
+
- Enter your command in the input box and click "Run" to get a response.
|
33 |
+
|
34 |
+
2. **Customize Configuration**:
|
35 |
+
- Modify the `shx-config.json` file to adjust the model's parameters such as `max_length`, `temperature`, `top_k`, and `top_p`.
|
36 |
+
|
37 |
+
### Configuration
|
38 |
+
|
39 |
+
The `shx-config.json` file contains the following parameters:
|
40 |
+
|
41 |
+
```json
|
42 |
+
{
|
43 |
+
"model_name": "EleutherAI/gpt-neo-1.3B",
|
44 |
+
"max_length": 150,
|
45 |
+
"temperature": 0.7,
|
46 |
+
"top_k": 50,
|
47 |
+
"top_p": 0.9
|
48 |
+
}
|
49 |
+
|
50 |
+
model_name: The name of the GPT-Neo model to use.
|
51 |
+
max_length: The maximum length of the generated response.
|
52 |
+
temperature: Controls the randomness of predictions by scaling the logits before applying the softmax function.
|
53 |
+
top_k: The number of highest probability vocabulary tokens to keep for top-k filtering.
|
54 |
+
top_p: The cumulative probability for nucleus sampling.
|
55 |
+
|
56 |
+
Credits
|
57 |
+
|
58 |
+
Model: GPT-Neo
|
59 |
+
Gradio: Gradio
|
60 |
+
Hugging Face: Hugging Face
|
61 |
+
|
62 |
+
Support
|
63 |
+
|
64 |
+
For more information and support, visit our GitHub repository:
|
65 |
+
|
66 |
+
GitHub Repository
|
67 |
+
|
68 |
+
License
|
69 |
+
|
70 |
+
This project is licensed under the MIT License. See the LICENSE file for details.
|
71 |
+
Contact
|
72 |
+
|
73 |
+
Author: subatomicERROR
|
74 |
+
Email: [email protected]
|
75 |
+
GitHub: subatomicERROR
|
76 |
+
|
77 |
+
Acknowledgments
|
78 |
+
|
79 |
+
Special thanks to the Hugging Face team for providing the platform and tools to build this application.
|
80 |
+
Thanks to the open-source community for their contributions and support.
|
81 |
+
|