@serticode/thoth 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
# Thoth
|
|
2
2
|
|
|
3
|
-
Identity Preserving Publishing Engine
|
|
4
|
-
|
|
5
|
-
> Thoth is the technical proving ground for [Cadence](https://cadence.sh).
|
|
6
|
-
|
|
7
|
-
---
|
|
3
|
+
Identity Preserving Publishing Engine: a CLI that builds voice, knowledge, and publication profiles from your writing, then generates articles that sound like you.
|
|
8
4
|
|
|
9
5
|
## Quick Start
|
|
10
6
|
|
|
@@ -22,10 +18,10 @@ thoth generate_profile
|
|
|
22
18
|
thoth profile_status
|
|
23
19
|
|
|
24
20
|
# 4. Research a topic
|
|
25
|
-
thoth research "offline
|
|
21
|
+
thoth research "offline first mobile architecture"
|
|
26
22
|
|
|
27
23
|
# 5. Generate an article in your voice
|
|
28
|
-
thoth generate_article --topic "offline
|
|
24
|
+
thoth generate_article --topic "offline first mobile architecture"
|
|
29
25
|
|
|
30
26
|
# 6. Export
|
|
31
27
|
thoth export_article <id>
|
|
@@ -81,7 +77,7 @@ export OLLAMA_CHAT_MODEL=qwen2.5:7b
|
|
|
81
77
|
export OLLAMA_EMBEDDING_MODEL=nomic-embed-text
|
|
82
78
|
```
|
|
83
79
|
|
|
84
|
-
See `thoth.json` for project
|
|
80
|
+
See `thoth.json` for project level overrides and the [full config docs](https://thoth.serticode.com/docs).
|
|
85
81
|
|
|
86
82
|
---
|
|
87
83
|
|
|
@@ -112,7 +108,7 @@ Output goes to `~/Documents/Thoth/singles/` and `~/Documents/Thoth/series/`.
|
|
|
112
108
|
|
|
113
109
|
## AI Provider Chain
|
|
114
110
|
|
|
115
|
-
Thoth chains through AI providers in quality
|
|
111
|
+
Thoth chains through AI providers in quality priority order. Each provider is gated by its API key; if the key isn't set, it's skipped.
|
|
116
112
|
|
|
117
113
|
| Provider | Chat Model | Embedding Model | Key Required |
|
|
118
114
|
| ------------- | -------------------- | ------------------------ | ------------------- |
|
|
@@ -122,7 +118,7 @@ Thoth chains through AI providers in quality-priority order. Each provider is ga
|
|
|
122
118
|
| **Anthropic** | `claude-3-haiku` | — | `ANTHROPIC_API_KEY` |
|
|
123
119
|
| **Ollama** | `qwen2.5:7b` | `nomic-embed-text` | none (local) |
|
|
124
120
|
|
|
125
|
-
Each provider has a 15
|
|
121
|
+
Each provider has a 15 second timeout. If one fails, the next is tried automatically.
|
|
126
122
|
|
|
127
123
|
---
|
|
128
124
|
|
|
@@ -148,6 +144,5 @@ All data stays local. Voice profiles, knowledge profiles, embeddings, research n
|
|
|
148
144
|
|
|
149
145
|
## Links
|
|
150
146
|
|
|
151
|
-
- [Full CLI Reference](https://thoth.
|
|
152
|
-
- [Changelog](CHANGELOG.md)
|
|
153
|
-
- [Release Plan](V1_RELEASE.md)
|
|
147
|
+
- [Full CLI Reference](https://thoth.serticode.com/docs)
|
|
148
|
+
- [Changelog](https://github.com/SerticodeInc/thoth/blob/master/CHANGELOG.md)
|