Skip to content

Commit

Permalink
docs(ai): add missing aiServiceRegistry flag
Browse files Browse the repository at this point in the history
This commit ensures that the `aiServiceRegistry` flag is added to the
example JSON. This flag is needed to connect to the AI network.
  • Loading branch information
rickstaa committed Jan 21, 2025
1 parent b091068 commit f784c87
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions doc/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
"program": "cmd/livepeer_cli",
"buildFlags": "-ldflags=-extldflags=-lm", // Fix missing symbol error.
"args": [
// "--http=8935", // Uncomment for Orch CLI.
// "--http=7935", // Uncomment for Orch CLI.
"--http=5935" // Uncomment for Gateway CLI.
]
},
Expand Down Expand Up @@ -210,7 +210,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
"program": "cmd/livepeer_cli",
"buildFlags": "-ldflags=-extldflags=-lm", // Fix missing symbol error.
"args": [
// "--http=8935", // Uncomment for Orch CLI.
// "--http=7935", // Uncomment for Orch CLI.
"--http=5935" // Uncomment for Gateway CLI.
]
},
Expand Down Expand Up @@ -288,6 +288,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
"args": [
"-orchestrator",
"-aiWorker",
"-aiServiceRegistry",
"-serviceAddr=0.0.0.0:8935",
"-v=6",
"-nvidia=all",
Expand All @@ -310,6 +311,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
"args": [
"-orchestrator",
"-orchSecret=orchSecret",
"-aiServiceRegistry",
"-serviceAddr=0.0.0.0:8935",
"-v=6",
"-network=arbitrum-one-mainnet",
Expand Down Expand Up @@ -346,6 +348,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
"buildFlags": "-tags=mainnet,experimental -ldflags=-extldflags=-lm", // Fix missing symbol error and enable mainnet.
"args": [
"-gateway",
"-aiServiceRegistry",
"-transcodingOptions=${env:HOME}/.lpData/offchain/transcodingOptions.json",
"-orchAddr=0.0.0.0:8935",
"-httpAddr=0.0.0.0:9935",
Expand Down

0 comments on commit f784c87

Please sign in to comment.