Skip to content

Clojure version: support response streaming #20

Clojure version: support response streaming

Clojure version: support response streaming #20

Workflow file for this run

name: Test on Octo
on:
push:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- run: node --version
- run: echo 'Which planet in our solar system is the largest?' | ./ask-llm.js | tee output.txt | grep -i jupiter
timeout-minutes: 3
env:
LLM_API_BASE_URL: 'https://text.octoai.run/v1'
LLM_API_KEY: ${{ secrets.OCTOAI_API_KEY }}
LLM_CHAT_MODEL: 'meta-llama-3.1-8b-instruct'
LLM_STREAMING: 'no'
- run: cat output.txt