Add ability to specify query params for post requests with chat compl… #10
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: Cargo clippy | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| cargo-clippy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| # required for the realtime example with audio playback | |
| - name: Install ALSA dependencies | |
| run: sudo apt-get update && sudo apt-get install -y libasound2-dev pkg-config | |
| - name: Cargo clippy | |
| run: cargo clippy --tests --workspace --all-targets -- -D warnings |