You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Select the new tuned model and compare it against a set of prompting techniques (zero-shot, few-shot and chain-of-thought):
60
57
61
58
```bash
62
59
uv run start-compare
63
60
```
64
61
65
-
6.**Start Social Bots**:
62
+
6.**Start Social Bots (optional):**:
63
+
66
64
- Set up Twitter/X API credentials
67
65
- Configure Telegram bot token
68
66
- Enable/disable platforms as needed
67
+
69
68
```bash
70
69
uv run start-bots
71
70
```
72
71
73
-
### Build using Docker (Recommended)
74
-
75
-
**Note:** You can only perform this step once you have finishing training a new model.
72
+
### Interact with model
76
73
77
74
The Docker setup mimics a TEE environment and includes an Nginx server for routing, while Supervisor manages both the backend and frontend services in a single container.
78
75
79
-
1.**Build the Docker Image:**
76
+
1.**Build the Docker image**:
80
77
81
78
```bash
82
79
docker build -t flare-ai-social .
@@ -89,11 +86,11 @@ The Docker setup mimics a TEE environment and includes an Nginx server for routi
89
86
```
90
87
91
88
3.**Access the Frontend:**
92
-
Open your browser and navigate to [http://localhost:80](http://localhost:80) to interact with the Chat UI.
89
+
Open your browser and navigate to [http://localhost:80](http://localhost:80) to interact with the tuned model via the Chat UI.
93
90
94
91
## 📁 Repo Structure
95
92
96
-
```
93
+
```plaintext
97
94
src/flare_ai_social/
98
95
├── ai/ # AI Provider implementations
99
96
│ ├── base.py # Base AI provider abstraction
@@ -226,4 +223,4 @@ If you encounter issues, follow these steps:
0 commit comments