File tree 2 files changed +11
-10
lines changed
2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -49,17 +49,13 @@ jobs:
49
49
id : check_api_key
50
50
run : |
51
51
if [ -z "$OPENAI_API_KEY" ]; then
52
- echo "::set-output name=api_key_present::false"
53
- else
54
- echo "::set-output name=api_key_present::true"
52
+ echo "Error: OPENAI_API_KEY is not set."
53
+ exit 1
55
54
fi
55
+ env :
56
+ OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
56
57
57
58
- name : Run integration tests
58
- if : steps.check_api_key.outputs.api_key_present == 'true'
59
59
run : pnpm run integrationTests
60
-
61
- - name : Skip integration tests
62
- if : steps.check_api_key.outputs.api_key_present == 'false'
63
- run : |
64
- echo "Skipping integration tests due to missing required API keys"
65
- exit 1
60
+ env :
61
+ OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
Original file line number Diff line number Diff line change @@ -55,6 +55,11 @@ cd eliza-starter
55
55
cp .env.example .env
56
56
pnpm i && pnpm build && pnpm start
57
57
```
58
+ Once the agent is running, You should see the message to run "pnpm start: client " at the end.
59
+ Open another terminal and move to same directory and then run below command and follow the URL to chat to your agent.
60
+ ``` bash
61
+ pnpm start:client
62
+ ```
58
63
59
64
Then read the [ Documentation] ( https://elizaos.github.io/eliza/ ) to learn how to customize your Eliza.
60
65
You can’t perform that action at this time.
0 commit comments