AnhChienVu / VShell

It is a CLI tool that will process input source files with an LLM to generate a README file
MIT License
1 stars 2 forks source link

Add a new feature of streaming the response out to stdout #16

Closed AnhChienVu closed 1 week ago

AnhChienVu commented 1 week ago

Feature

The application now supports two methods of retrieving responses from chatCompletion. The first method allows users to export the response to an output file using the -o/--output flag. The second method prints the entire response to the console at once.

In this new feature, the goal is to implement real-time streaming of responses directly to the console (stdout) rather than outputting everything at once.

Implementation

Notes

AnhChienVu commented 1 week ago

Closed by dd671de