[2ff88f42] einfügen

einfügen
This commit is contained in:
2026-02-24 07:13:49 +00:00
parent e39c745a78
commit bfb96118b0
15 changed files with 255 additions and 10 deletions

13
verify_db.py Normal file
View File

@@ -0,0 +1,13 @@
import sqlite3
DB_PATH = "/app/companies_v3_fixed_2.db"
conn = sqlite3.connect(DB_PATH)
cursor = conn.cursor()
cursor.execute("SELECT name, description, convincing_arguments FROM personas")
rows = cursor.fetchall()
for row in rows:
print(f"Persona: {row[0]}")
print(f" Description: {row[1][:100]}...")
print(f" Convincing: {row[2][:100]}...")
print("-" * 20)
conn.close()