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
use the `potential_topics` table in `database/topics.db` for topic selection. For these, the Topic Agent selects topics via SQLite queries only (no extra LLM call for topic selection).
642
+
- When you use any other custom field (for example, `"Software Engineering (Cloud Architecture)"` or your own niche), the Topic Agent typically will not find matching topics in the database and will **fall back to LLM-based topic generation**. This requires an additional LLM API call and therefore increases cost for each run that needs a new topic.
643
+
- If you want to use a custom field **without** paying the extra LLM cost for topic selection, you can seed your own topics into the database (for your custom field value) using `database/init_db.py` or a similar initialization step. Once seeded, your custom field behaves like the pre-seeded ones and uses database queries first.
624
644
### Character Limits
625
645
626
646
The system enforces a 3000-character limit for LinkedIn posts. If a post exceeds this, it's automatically sent back to the Writer Agent for shortening.
0 commit comments