Greg Stephens

Results 78 comments of Greg Stephens

I've updated now to 0.11.0 and the issue with the text not showing is fixed. However, the original problem reported by @alex-movila where the `payload` is displayed is still a...

parseEnv is not defined: ``` Run actions/github-script@v2 ReferenceError: parseEnv is not defined Error: Unhandled error: ReferenceError: parseEnv is not defined at eval (eval at callAsyncFunction (/home/runner/work/_actions/actions/github-script/v2/dist/index.js:7985:56), :3:13) at callAsyncFunction (/home/runner/work/_actions/actions/github-script/v2/dist/index.js:7986:12)...

Ended up doing it with the shell: ```yml - name: Import environment variables from a file id: import-env shell: bash run: | while read line; do echo "$line" >> $GITHUB_ENV...

I think this is related: ```yml models: - type: main engine: deepinfra model: mistralai/Mixtral-8x7B-Instruct-v0.1 parameters: model_kwargs: temperature: 0.5 ``` Results in: `Parameter temperature does not exist for DeepInfra` But, temperature...

For my use case, the "model" value need to be empty.

Any update on this. Docs reference doing `npm install` but you end up with a very old version.

Thanks, with the multi-modal gestures are there any interfaces that you're working with that support this with graphics or digital human interfaces?

This was caused by a syntax error (using colang 1.0). The old format: ```yml $weather_info = execute openweather_query(location=$location) ``` Should now be: ```yml $weather_info = await openweather_query(location=$location) ```