Open ClancyDennis opened 8 months ago
In my testing---
line 16 api-communication/run_steps pub async fn get_step_handler( Path((run_id, step_id)): Path<(String, String)>,
goes to
pub async fn get_step_handler( Path((thread_id, run_id, step_id)): Path<(String, String, String)>,
fixes empty row returned by sqlx
n.b. still unable to run chainlit-cookbook/openai-assistants example (unwrapping None value)
Thx for testing this @ClancyDennis ! Steps was implemented recently, still experimental. Any contribution highly appreciated!
In my testing---
line 16 api-communication/run_steps pub async fn get_step_handler( Path((run_id, step_id)): Path<(String, String)>,
goes to
pub async fn get_step_handler( Path((thread_id, run_id, step_id)): Path<(String, String, String)>,
fixes empty row returned by sqlx
n.b. still unable to run chainlit-cookbook/openai-assistants example (unwrapping None value)