Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Multi-turn conversation and query lifecycle

Build an interactive terminal application that keeps conversation context while giving the user direct control over the query lifecycle.

             ordinary prompt
                   |
                   v
closed -- /resume --> open <--> generating
  ^                    |            |
  |                  /close       Ctrl+C
  |                    |            |
  +--------------------+            +--> open and idle

session_id is preserved across /close -> /resume

Complete the repository setup, then:

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python main.py /path/to/repository

Application commands:

Command Behavior
/status Show the current query, turn, and session state
/close Explicitly close the query while retaining its session ID
/resume Create a new query that resumes the retained session
/exit Close the query and exit the application

Try asking the application to remember a value, run /close, run /resume, and ask for the value again. To exercise interruption, request a long analysis and press Ctrl+C while output is being generated. The current turn stops, but the application and query remain open.

The application receives each response in a background task so lifecycle commands remain available during generation. QoderSDKClient.disconnect() closes the active query. All repository tools are read-only.