chore: remove unused clap dep and fix test_session_table name

- Remove clap dependency from retrieval-pipeline (RetrievalStrategy
  already has FromStr/Display; evaluations uses clap directly)
- Rename session table from test_session_table to session
This commit is contained in:
Per Stark
2026-05-25 14:02:53 +02:00
parent b965c5a2e6
commit 6a5d631287
4 changed files with 2 additions and 7 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ impl SurrealDbClient {
SessionStore::new(
Some(self.client.clone().into()),
SessionConfig::default()
.with_table_name("test_session_table")
.with_table_name("session")
.with_secure(true),
)
.await